From 020d4d3a17ce6fb75d14c0804cda5e9b738e2482 Mon Sep 17 00:00:00 2001 From: Adam Hopkins Date: Tue, 25 Jul 2023 12:12:11 +0300 Subject: [PATCH] Bump version and remove py3.7 --- .github/workflows/python-package.yml | 2 +- sanic_testing/__init__.py | 2 +- setup.py | 4 ++-- tox.ini | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 41cbc84..70f574d 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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 diff --git a/sanic_testing/__init__.py b/sanic_testing/__init__.py index 74d49c9..4b4f2af 100644 --- a/sanic_testing/__init__.py +++ b/sanic_testing/__init__.py @@ -1,4 +1,4 @@ from sanic_testing.manager import TestManager -__version__ = "23.3.0" +__version__ = "23.6.0" __all__ = ("TestManager",) diff --git a/setup.py b/setup.py index c88be89..cec092c 100644 --- a/setup.py +++ b/setup.py @@ -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"] diff --git a/tox.ini b/tox.ini index 86e597a..1e04349 100644 --- a/tox.ini +++ b/tox.ini @@ -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 =