Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the Python versions to test #118

Merged
merged 5 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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}
Loading