Skip to content

Commit

Permalink
Remove support for end-of-life Python 3.6 (#8)
Browse files Browse the repository at this point in the history
Python 3.6 has been EOL since 2021-12-23.

https://devguide.python.org/devcycle/#end-of-life-branches

Also add Python 3.10 to documented list of supported versions.
  • Loading branch information
jdufresne authored Jun 27, 2022
1 parent 7b9f09a commit bc8b730
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = 'MIT/Apache-2.0'
url = 'https://github.com/ofek/binary'

[requires]
python_version = ['3.6', '3.7', '3.8', '3.9', 'pypy3']
python_version = ['3.7', '3.8', '3.9', '3.10', 'pypy3']

[build-system]
requires = ['setuptools', 'wheel']
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy

[options]
python_requires = >=3.6
python_requires = >=3.7
packages = binary

[options.package_data]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{36,37,38,39,py3}, mypy
envlist = py{37,38,39,310,py3}, mypy

[testenv]
passenv = *
Expand Down

0 comments on commit bc8b730

Please sign in to comment.