diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 63443d1..d40c640 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -7,13 +7,14 @@ on: pull_request: paths: - '**.py' + - '.github/workflows/linux.yml' jobs: build: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.8, 3.9, 3.10, 3.11, 3.12] steps: - uses: actions/checkout@v2 diff --git a/docs/source/changes.rst b/docs/source/changes.rst index b7731ed..f37e536 100644 --- a/docs/source/changes.rst +++ b/docs/source/changes.rst @@ -7,6 +7,9 @@ next - Drop support for python 2.x - Drop enum34 requirement - Drop use of six package +- Drop incorrect type annotations +- Drop support for python < 3.8 +- Add support for Python 3.10, 3.11, 3.12 0.6.0 ------ diff --git a/setup.cfg b/setup.cfg index 180854b..473b799 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,10 +19,11 @@ classifiers = Development Status :: 4 - Beta License :: OSI Approved :: MIT License Programming Language :: Python :: 3 - Programming Language :: Python :: 3.6 - 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 + Programming Language :: Python :: 3.12 Intended Audience :: Developers [options]