Skip to content

Commit

Permalink
Merge pull request #118 from shane-ns1/fix-python-versions-tested
Browse files Browse the repository at this point in the history
Update the Python versions to test
  • Loading branch information
shane-ns1 authored Dec 19, 2023
2 parents 4350c3f + 5b590c9 commit da896b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [2.7, 3.7]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v1
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Drop support for EOL Python 2.7 and 3.7. Add support for Python 3.11
and 3.12.

## 0.18.0 (August 23, 2022)
* Add usage stats pagination support
* Drop support for EOL Python 3.6, add support for Python 3.7 to 3.10
Expand Down
8 changes: 1 addition & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py37,py38,py39,py310
envlist = py38,py39,py310,py311,py312
skip_missing_interpreters = True

[testenv]
Expand All @@ -10,9 +10,3 @@ deps=

commands=
py.test --ignore=build -v --cov=ns1 --cov-report=term tests

[testenv:py27]
deps=
six
mock
{[testenv]deps}

0 comments on commit da896b8

Please sign in to comment.