Skip to content

Commit 5e4cbc9

Browse files
committed
Drop support for end-of-life Python 3.6
1 parent bab1b9a commit 5e4cbc9

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,11 @@ jobs:
2828
strategy:
2929
matrix:
3030
python:
31-
- "3.6"
3231
- "3.7"
3332
- "3.8"
3433
- "3.9"
3534
- "3.10"
36-
- "pypy-3.6"
35+
- "pypy-3.7"
3736

3837
steps:
3938
- uses: actions/checkout@v3

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ If you want to jump into the API description right away, read about the
1919
Compatibility
2020
=============
2121

22-
The ``distro`` package is supported on Python 3.6+ and PyPy, and on any Linux
22+
The ``distro`` package is supported on Python 3.7+ and PyPy, and on any Linux
2323
or BSD distribution that provides one or more of the `data sources`_ used by
2424
this package.
2525

26-
This package is tested on Python 3.6+ and PyPy, with test data that mimics the
26+
This package is tested on Python 3.7+ and PyPy, with test data that mimics the
2727
exact behavior of the data sources of `a number of Linux distributions
2828
<https://github.com/python-distro/distro/tree/master/tests/resources/distros>`_.
2929

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ classifiers =
2121
Operating System :: POSIX :: BSD :: OpenBSD
2222
Programming Language :: Python :: 3
2323
Programming Language :: Python :: 3 :: Only
24-
Programming Language :: Python :: 3.6
2524
Programming Language :: Python :: 3.7
2625
Programming Language :: Python :: 3.8
2726
Programming Language :: Python :: 3.9
@@ -33,7 +32,7 @@ classifiers =
3332
package_dir =
3433
= src
3534
packages = distro
36-
python_requires = >=3.6
35+
python_requires = >=3.7
3736

3837
[options.package_data]
3938
* = py.typed

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[tox]
1616
minversion = 1.9
17-
envlist = lint, py{36,37,38,39,310,py3}
17+
envlist = lint, py{37,38,39,310,py3}
1818
skip_missing_interpreters = true
1919

2020
[testenv]

0 commit comments

Comments
 (0)