Skip to content

Commit 9eaadb7

Browse files
committed
Update Python versions and dependencies in configuration files
1 parent 6e55d26 commit 9eaadb7

File tree

4 files changed

+19
-25
lines changed

4 files changed

+19
-25
lines changed

.readthedocs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ version: 2
77

88
# Set the OS, Python version and other tools you might need
99
build:
10-
os: ubuntu-22.04
10+
os: ubuntu-24.04
1111
tools:
12-
python: "3.8"
12+
python: "3.12"
1313

1414
# Build documentation in the docs/ directory with Sphinx
1515
sphinx:

.travis.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@
22

33
language: python
44
python:
5-
- "3.8"
6-
- "3.9"
75
- "3.10"
86
- "3.11"
7+
- "3.12"
8+
- "3.13"
9+
- "3.14"
910

10-
# Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
1111
install:
12-
- pip install tox-travis
13-
- pip install codecov
12+
- pip install --upgrade pip
13+
- pip install tox tox-travis codecov
1414

15-
# Command to run tests, e.g. python setup.py test
16-
script: tox
15+
script:
16+
- tox
1717

18-
after_success: codecov
18+
after_success:
19+
- codecov

appveyor.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,18 @@ image:
44

55
environment:
66
matrix:
7-
- TOXENV: py38-pandas1
8-
- TOXENV: py38-pandas2
9-
- TOXENV: py38-pandas3
10-
- TOXENV: py39-pandas1
11-
- TOXENV: py39-pandas2
12-
- TOXENV: py39-pandas3
13-
- TOXENV: py310-pandas1
147
- TOXENV: py310-pandas2
15-
- TOXENV: py310-pandas3
16-
- TOXENV: py311-pandas1
178
- TOXENV: py311-pandas2
18-
- TOXENV: py311-pandas3
9+
- TOXENV: py312-pandas2
10+
- TOXENV: py313-pandas2
11+
- TOXENV: py314-pandas2
1912
- TOXENV: flake8
2013
- TOXENV: doc8
2114

2215
build: off
2316

2417
install:
18+
- py -m pip install --upgrade pip
2519
- py -m pip install tox
2620

2721
test_script:

setup.cfg

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,17 @@ addopts = --doctest-modules --doctest-continue-on-failure --ignore=setup.py
4444

4545
[tox:tox]
4646
envlist =
47-
py{310,311,312,313}-pandas2
48-
flake8
49-
doc8
47+
py{310,311,312,313,314}-pandas2
5048
flake8
5149
doc8
5250

5351
[travis]
5452
python =
53+
3.14: py314
54+
3.13: py313
55+
3.12: py312
5556
3.11: py311
5657
3.10: py310
57-
3.9: py39
58-
3.8: py38
5958

6059
[testenv:flake8]
6160
deps =

0 commit comments

Comments
 (0)