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.
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
.