Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for end-of-life Python 3.6 #334

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@ jobs:
strategy:
matrix:
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "pypy-3.6"
- "pypy-3.7"

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ If you want to jump into the API description right away, read about the
Compatibility
=============

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

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

Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ classifiers =
Operating System :: POSIX :: BSD :: OpenBSD
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
Expand All @@ -33,7 +32,7 @@ classifiers =
package_dir =
= src
packages = distro
python_requires = >=3.6
python_requires = >=3.7

[options.package_data]
* = py.typed
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[tox]
minversion = 1.9
envlist = lint, py{36,37,38,39,310,py3}
envlist = lint, py{37,38,39,310,py3}
skip_missing_interpreters = true

[testenv]
Expand Down