Skip to content

Commit a4ad4ce

Browse files
committed
Merge branch 'issue46' into 'master'
Update pyproject.toml and setup.py Closes python#46 See merge request python-devs/importlib_resources!47
2 parents 041b1f7 + 496f4aa commit a4ad4ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ classifiers = [
2222
"Topic :: Software Development :: Libraries",
2323
"Programming Language :: Python :: 3",
2424
]
25-
requires-python = ">=3.4"
25+
requires-python = "==2.7,>=3.4"
2626
requires = [
2727
"pathlib2; python_version < '3'",
2828
"typing; python_version < '3.5'",

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
{":python_version < '3'": ['pathlib2'], ":python_version < '3.5'": ['typing']}
2020

2121
setup(name='importlib_resources',
22-
version='0.1.0',
22+
version='0.2',
2323
description='Read resources contained within a package.',
2424
author='Brett Cannon\nBarry Warsaw',
2525
author_email='brett@python.org\nbarry@python.org',
26-
url='http://importlib-resources.readthedocs.io/en/latest/',
26+
url='http://importlib-resources.readthedocs.io/',
2727
packages=packages,
2828
package_data=package_data,
2929
extras_require=extras_require,
30-
python_requires='>=3.4',
30+
python_requires='==2.7,>=3.4',
3131
)

0 commit comments

Comments
 (0)