Skip to content

Commit 80bfad8

Browse files
Merge pull request #339 from EwoutH/py37
Require Python 3.7 or higher
2 parents a593d27 + 80503cd commit 80bfad8

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: [3.6, 3.7, 3.8, 3.9, pypy-3.7]
9+
python-version: [3.7, 3.8, 3.9, pypy-3.7]
1010

1111
steps:
1212
- name: Checkout repository

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Before you submit a pull request, check that it meets these guidelines:
9999
2. If the pull request adds functionality, the docs should be updated. Put
100100
your new functionality into a function with a docstring, and add the
101101
feature to the list in README.rst.
102-
3. The pull request should work for Python 2.7, 3.4, 3.5, 3.6, and PyPy. Check
102+
3. The pull request should work for Python 3.7 to 3.11, and PyPy. Check
103103
https://travis-ci.org/bndr/pipreqs/pull_requests and make sure that the
104104
tests pass for all supported Python versions.
105105

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,17 @@
4343
'License :: OSI Approved :: Apache Software License',
4444
'Natural Language :: English',
4545
'Programming Language :: Python :: 3',
46-
'Programming Language :: Python :: 3.6',
4746
'Programming Language :: Python :: 3.7',
4847
'Programming Language :: Python :: 3.8',
4948
'Programming Language :: Python :: 3.9',
49+
'Programming Language :: Python :: 3.10',
50+
'Programming Language :: Python :: 3.11',
5051
],
5152
test_suite='tests',
5253
entry_points={
5354
'console_scripts': [
5455
'pipreqs=pipreqs.pipreqs:main',
5556
],
5657
},
58+
python_requires='>=3.7',
5759
)

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, pypy3, flake8
2+
envlist = py37, py38, py39, pypy3, flake8
33

44
[gh-actions]
55
python =
6-
3.6: py36
76
3.7: py37
87
3.8: py38
98
3.9: py39

0 commit comments

Comments
 (0)