Skip to content

Commit b4404df

Browse files
authored
(3.8) Update CI and metadata (#367)
1 parent 63acfdc commit b4404df

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1313

1414
os: [ubuntu-latest]
1515

DEVELOPMENT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We use GitHub. To get started I'd suggest visiting https://guides.github.com/
1010

1111
Please make sure you system has the following:
1212

13-
- Python 3.7.0 or greater
13+
- Python 3.8.0 or greater
1414
- git cli client
1515

1616
Also ensure you can authenticate with GitHub via SSH Keys or HTTPS.
@@ -55,7 +55,7 @@ You can also use [tox](https://tox.wiki/en/latest/index.html) to test with multi
5555
```console
5656
/path/to/venv/bin/tox
5757
```
58-
will by default run all tests on python versions 3.7 through 3.11. If you only want to test a specific version you can specify the environment with `-e`
58+
will by default run all tests on python versions 3.8 through 3.11. If you only want to test a specific version you can specify the environment with `-e`
5959

6060
```console
6161
/path/to/venv/bin/tox -e py38

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ classifiers = [
2626
"Operating System :: OS Independent",
2727
"Programming Language :: Python",
2828
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.7",
3029
"Programming Language :: Python :: 3.8",
3130
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
@@ -35,7 +34,7 @@ classifiers = [
3534
"Topic :: Software Development :: Libraries :: Python Modules",
3635
"Topic :: Software Development :: Quality Assurance",
3736
]
38-
requires-python = ">=3.7"
37+
requires-python = ">=3.8"
3938
dependencies = ["flake8 >= 3.0.0", "attrs>=19.2.0"]
4039
dynamic = ["version"]
4140

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# The test environment and commands
22
[tox]
33
# default environments to run without `-e`
4-
envlist = py37, py38, py39, py310, py311
4+
envlist = py38, py39, py310, py311
55

66
[gh-actions]
77
python =
8-
3.7: py37
98
3.8: py38
109
3.9: py39
1110
3.10: py310

0 commit comments

Comments
 (0)