diff options
| -rw-r--r-- | .github/workflows/main.yml | 2 | ||||
| -rw-r--r-- | .pre-commit-config.yaml | 2 | ||||
| -rw-r--r-- | setup.py | 3 | ||||
| -rw-r--r-- | tox.ini | 3 |
4 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 96f1bd5..83b584e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"] steps: - uses: actions/checkout@v3 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 338bbff..38c4a68 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -18,4 +18,4 @@ repos: rev: v3.2.3 hooks: - id: pyupgrade - args: [--py36-plus] + args: [--py37-plus] @@ -20,7 +20,6 @@ CLASSIFIERS = ['Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', @@ -48,7 +47,7 @@ setup( packages=PACKAGES, test_suite=TEST_SUITE, install_requires=REQUIRES, - python_requires='>=3.6', + python_requires='>=3.7', # metadata for upload to PyPI author=AUTHOR, author_email=AUTHOR_EMAIL, @@ -1,9 +1,8 @@ [tox] -envlist = py{3.6,3.7,3.8,3.9,3.10,3.11,3.12} +envlist = py{3.7,3.8,3.9,3.10,3.11,3.12} [testenv] basepython = - py3.6: python3.6 py3.7: python3.7 py3.8: python3.8 py3.9: python3.9 |
