Skip to content

Commit 107f902

Browse files
committed
Drop support for sunset Pythons (3.5 and earlier).
1 parent 7ea08d0 commit 107f902

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ qa:
1313

1414
tests:
1515
script:
16-
- tox -e py27,py35,py36,py37,py38
16+
- tox -e py36,py37,py38
1717

1818
coverage:
1919
script:
20-
- tox -e py27-cov,py35-cov,py36-cov,py37-cov,py38-cov
20+
- tox -e py36-cov,py37-cov,py38-cov
2121
artifacts:
2222
paths:
2323
- coverage.xml
@@ -28,7 +28,7 @@ benchmark:
2828

2929
diffcov:
3030
script:
31-
- tox -e py27-diffcov,py35-diffcov,py36-diffcov,py37-diffcov,py38-diffcov
31+
- tox -e py36-diffcov,py37-diffcov,py38-diffcov
3232

3333
docs:
3434
script:

docs/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
importlib_metadata NEWS
33
=========================
44

5+
v3.0.0
6+
======
7+
8+
* Require Python 3.6 or later.
9+
510
v2.0.0
611
======
712

setup.cfg

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,12 @@ classifiers =
1212
License :: OSI Approved :: Apache Software License
1313
Topic :: Software Development :: Libraries
1414
Programming Language :: Python :: 3
15-
Programming Language :: Python :: 2
1615

1716
[options]
18-
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
17+
python_requires = >=3.6
1918
setup_requires = setuptools-scm
2019
install_requires =
2120
zipp>=0.5
22-
pathlib2; python_version < '3'
23-
contextlib2; python_version < '3'
24-
configparser>=3.5; python_version < '3'
2521
packages = importlib_metadata
2622

2723
[mypy]

0 commit comments

Comments
 (0)