diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index c9a7fbb..b4df511 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -14,16 +14,16 @@ jobs: python: 3.8 # Latest Python & Pytest - - toxenv: py311-pytest_latest-supported-xdist - python: 3.11 + - toxenv: py312-pytest_latest-supported-xdist + python: 3.12 # QA - toxenv: qa python: 3.8 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} cache: 'pip' @@ -48,10 +48,10 @@ jobs: if: github.ref=='refs/heads/main' && github.event_name!='pull_request' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.9" diff --git a/setup.cfg b/setup.cfg index ea32f47..cf7d808 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,3 @@ -[bdist_wheel] -universal = 1 - [flake8] max-line-length = 88 extend-ignore = E203 diff --git a/setup.py b/setup.py index 002a8dd..2965ea3 100644 --- a/setup.py +++ b/setup.py @@ -65,6 +65,7 @@ def get_version(filename): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: PyPy", ], ) diff --git a/tox.ini b/tox.ini index 1f5b8f2..b754e29 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.14.0 -envlist = py{38,311,py}-pytest_latest-supported-xdist +envlist = py{38,312,py}-pytest_latest-supported-xdist qa requires = virtualenv>=20.0.31