Skip to content

Commit 623d8fc

Browse files
committed
Drop Python 3.9
1 parent 2b837c4 commit 623d8fc

3 files changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
include:
17-
- os: ubuntu-latest
18-
python: '3.9'
19-
toxenv: py39
2017
- os: ubuntu-latest
2118
python: '3.10'
2219
toxenv: py310

docs/contributing/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ $ . venv/bin/activate
1616

1717
Running Tox in a Conda environment is possible but it may conflict with
1818
Tox's ability to find the correct Python versions. E.g., if your
19-
Conda environment is Python 3.9, running `#!bash $ tox -e p38` may still use
20-
Python 3.9.
19+
Conda environment is Python 3.13, running `#!bash $ tox -e p312` may still use
20+
Python 3.13.
2121

2222
To install manually:
2323
```bash
@@ -61,9 +61,9 @@ Code that is useful for building tests but is not a test itself belongs in the
6161

6262
```bash
6363
# Run all tests in tests/
64-
$ tox -e py39
64+
$ tox -e py313
6565
# Run a specific test
66-
$ tox -e py39 -- tests/x/y_test.py::test_z
66+
$ tox -e py313 -- tests/x/y_test.py::test_z
6767
```
6868

6969
## Docs

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39, py310, py311, py312, py313, pre-commit, docs
2+
envlist = py310, py311, py312, py313, pre-commit, docs
33

44
[testenv]
55
extras = dev

0 commit comments

Comments
 (0)