Skip to content

Commit

Permalink
Bump version and remove py3.7 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahopkins committed Jul 25, 2023
1 parent f62dcaf commit 971e12d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion sanic_testing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from sanic_testing.manager import TestManager

__version__ = "23.3.0"
__version__ = "23.6.0"
__all__ = ("TestManager",)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ def open_local(paths, mode="r", encoding="utf8"):
"packages": ["sanic_testing"],
"platforms": "any",
"classifiers": [
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
}
requirements = ["httpx>=0.18"]
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tox]
envlist = py37, py38, py39, py310, check
envlist = py38, py39, py310, py311, check

[gh-actions]
python =
3.7: py37
3.8: py38, check
3.9: py39
3.10: py310
3.11: py311

[testenv]
deps =
Expand Down

0 comments on commit 971e12d

Please sign in to comment.