Skip to content

Commit

Permalink
Fix invalid python_requires specifier in setup.py
Browse files Browse the repository at this point in the history
See https://reviews.llvm.org/rLNT0476dede37838e2f765f50dd26734cfced9d90d9, this syntax was never supposed to be valid.
  • Loading branch information
moble authored and eric-wieser committed Aug 14, 2023
1 parent ab380b0 commit 43ec560
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 @@ -23,7 +23,7 @@
package_dir={'galgebra': 'galgebra'},
# Sympy 1.4 is needed for printing tests to pass, but 1.3 will still work
install_requires=['sympy'],
python_requires='>=3.6.*',
python_requires='>=3.6',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
Expand Down

0 comments on commit 43ec560

Please sign in to comment.