diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a849bc2..2c6685c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: matrix: os: - ubuntu-20.04 - python-version: [3.8, '3.8', '3.12'] + python-version: ['3.8', '3.11', '3.12'] steps: - uses: actions/checkout@v2 - name: setup python diff --git a/setup.py b/setup.py index 6d1a58d..87baf63 100644 --- a/setup.py +++ b/setup.py @@ -69,6 +69,7 @@ def get_version(*file_paths): 'Natural Language :: English', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', ], description="User utilities for the Open edX platform", diff --git a/tox.ini b/tox.ini index 3061d76..0352586 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,10 @@ [tox] -envlist = py{38, 312}-django{42},quality +envlist = py{38, 311, 312}-django{42},quality [ci] python = 3.12: py312 + 3.11: py311 3.8: py38 quality: flake8