Skip to content

Commit 6c78164

Browse files
committed
feat: specify Python versions required (PEP 345)
1 parent 3f0b254 commit 6c78164

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ adheres to [Semantic Versioning](https://semver.org/).
2626

2727
### :house: Internal
2828

29+
- Specify the Python versions required in package metadata
2930
- Test the `mode` attribute of objects returned by `xz.open`/`XZFile`
3031
- Minor improvements in some docstrings
3132

setup.cfg

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ classifiers =
1818
Operating System :: OS Independent
1919
Programming Language :: Python
2020
Programming Language :: Python :: 3
21+
Programming Language :: Python :: 3 :: Only
22+
Programming Language :: Python :: 3.6
23+
Programming Language :: Python :: 3.7
24+
Programming Language :: Python :: 3.8
25+
Programming Language :: Python :: 3.9
26+
Programming Language :: Python :: 3.10
2127
Topic :: Utilities
2228
Topic :: System :: Archiving
2329
Topic :: System :: Archiving :: Compression
@@ -26,6 +32,7 @@ classifiers =
2632
include_package_data = True
2733
package_dir = =src
2834
packages = xz
35+
python_requires = >=3.6
2936
setup_requires =
3037
setuptools_scm
3138
wheel

0 commit comments

Comments
 (0)