You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With python 3.9, I got the following error with python setup.py install when installing the latest SubPhaser.
> python setup.py install
error in subphaser setup command: 'python_requires' must be a string containing valid version specifiers; Invalid specifier: '>=3.6:'
The installation worked well after replacing python_requires='>=3.6:' with python_requires='>=3.6' in setup.py.
The text was updated successfully, but these errors were encountered:
With python 3.9, I got the following error with
python setup.py install
when installing the latest SubPhaser.The installation worked well after replacing
python_requires='>=3.6:'
withpython_requires='>=3.6'
insetup.py
.The text was updated successfully, but these errors were encountered: