Skip to content

Commit

Permalink
(3.8) Update CI and metadata (#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
FozzieHi committed Mar 14, 2023
1 parent 63acfdc commit b4404df
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

os: [ubuntu-latest]

Expand Down
4 changes: 2 additions & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ We use GitHub. To get started I'd suggest visiting https://guides.github.com/

Please make sure you system has the following:

- Python 3.7.0 or greater
- Python 3.8.0 or greater
- git cli client

Also ensure you can authenticate with GitHub via SSH Keys or HTTPS.
Expand Down Expand Up @@ -55,7 +55,7 @@ You can also use [tox](https://tox.wiki/en/latest/index.html) to test with multi
```console
/path/to/venv/bin/tox
```
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`
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`

```console
/path/to/venv/bin/tox -e py38
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -35,7 +34,7 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = ["flake8 >= 3.0.0", "attrs>=19.2.0"]
dynamic = ["version"]

Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# The test environment and commands
[tox]
# default environments to run without `-e`
envlist = py37, py38, py39, py310, py311
envlist = py38, py39, py310, py311

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
Expand Down

0 comments on commit b4404df

Please sign in to comment.