File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ That's way we forked the original and accepted most of PRs waiting for review si
18
18
19
19
### Features
20
20
21
- * Python 2 and 3 compatible
21
+ * Python >=3.6 compatible
22
22
* Automatic correction of
23
23
* Linefeeds according to patched file
24
24
* Diffs broken by stripping trailing whitespace
Original file line number Diff line number Diff line change 7
7
# Always prefer setuptools over distutils
8
8
import re
9
9
import os
10
- from setuptools import setup , find_packages
10
+ from setuptools import setup
11
11
# To use a consistent encoding
12
12
from codecs import open
13
13
@@ -39,6 +39,7 @@ def load_version():
39
39
40
40
setup (
41
41
name = 'patch-ng' ,
42
+ python_requires = '>=3.6' ,
42
43
# Versions should comply with PEP440. For a discussion on single-sourcing
43
44
# the version across setup.py and the project code, see
44
45
# https://packaging.python.org/en/latest/single_source_version.html
@@ -72,9 +73,8 @@ def load_version():
72
73
'Intended Audience :: Developers' ,
73
74
'Topic :: Software Development :: Build Tools' ,
74
75
'License :: OSI Approved :: MIT License' ,
75
- 'Programming Language :: Python :: 2' ,
76
- 'Programming Language :: Python :: 2.7' ,
77
76
'Programming Language :: Python :: 3' ,
77
+ 'Programming Language :: Python :: 3.6' ,
78
78
],
79
79
80
80
# What does your project relate to?
You can’t perform that action at this time.
0 commit comments