8000 Remove python 2.7 support from setup files · madzak/python-json-logger@6d43bde · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit 6d43bde

Browse files
committed
Remove python 2.7 support from setup files
1 parent a335e61 commit 6d43bde

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# This flag says that the code is written to work on both Python 2 and Python
33
# 3. If at all possible, it is good practice to do this. If you cannot, you
44
# will need to generate wheels for each Python version that you support.
5-
universal=1
5+
python-tag=py34

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@
1212
package_dir={'': 'src'},
1313
packages=find_packages("src", exclude="tests"),
1414
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
15-
python_requires='>=2.7',
15+
python_requires='>=3.4',
1616
test_suite="tests.tests",
1717
classifiers=[
1818
'Development Status :: 3 - Alpha',
1919
'Intended Audience :: Developers',
2020
'License :: OSI Approved :: BSD License',
2121
'Operating System :: OS Independent',
2222
'Programming Language :: Python',
23-
'Programming Language :: Python :: 2',
24-
'Programming Language :: Python :: 2.7',
2523
'Programming Language :: Python :: 3',
2624
'Programming Language :: Python :: 3.4',
2725
'Programming Language :: Python :: 3.5',

0 commit comments

Comments
 (0)
0