Skip to content

Commit

Permalink
Make python_requires PEP 440 compatible
Browse files Browse the repository at this point in the history
Recent changes to setuptools (pypa/setuptools#3790) released in version 67.0.0 make the `python_requires` check more strick and prevent the  installation of Slash.
  • Loading branch information
pierreluctg authored Jan 30, 2023
1 parent 3f8ca72 commit b69c225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
setup(
setup_requires=['pbr>=3.0', 'setuptools>=17.1'],
pbr=True,
python_requires=">=3.6.*",
python_requires="==3.6.*",
long_description_content_type='text/markdown; charset=UTF-8',
)

0 comments on commit b69c225

Please sign in to comment.