Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ That's way we forked the original and accepted most of PRs waiting for review si

### Features

* Python 2 and 3 compatible
* Python >=3.6 compatible
* Automatic correction of
* Linefeeds according to patched file
* Diffs broken by stripping trailing whitespace
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Always prefer setuptools over distutils
import re
import os
from setuptools import setup, find_packages
from setuptools import setup
# To use a consistent encoding
from codecs import open

Expand Down Expand Up @@ -39,6 +39,7 @@ def load_version():

setup(
name='patch-ng',
python_requires='>=3.6',
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
Expand Down Expand Up @@ -72,9 +73,8 @@ def load_version():
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],

# What does your project relate to?
Expand Down