Skip to content

Commit 1abe3d1

Browse files
authored
Merge pull request #35 from pganssle/requires_python
Add Requires-Python
2 parents 22f99da + fa99fd6 commit 1abe3d1

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
include AUTHORS.rst
22
include CONTRIBUTING.rst
3-
include HISTORY.rst
3+
include NEWS.rst
44
include LICENSE
55
include README.rst
66

NEWS.rst

+5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ Features
77
- Added the ``variants.inspect`` module, which provides a public API for
88
inspecting variant function groups. It currently provides two functions:
99
``is_primary`` and ``is_primary_method``. (GH #29)
10+
- Added python_requires to setup, indicating Python version support. (GH #34)
1011

12+
Bugfixes
13+
--------
14+
15+
- Updated MANIFEST.in to include NEWS.rst (GH #34)
1116

1217
Improved Documentation
1318
----------------------

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,5 @@
5454
test_suite='tests',
5555
tests_require=test_requirements,
5656
setup_requires=setup_requirements,
57+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*",
5758
)

0 commit comments

Comments
 (0)