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
#79 a side discussion here showed that it is currently possible to install pose-format into a python 3.7 environment. However pose-format uses a feature implemented in Python 3.9, the str.removesuffix() function. https://www.geeksforgeeks.org/python-string-removesuffix/
Therefore it would be nice if we could add a dependency check to prevent such installs from happening.
#79 a side discussion here showed that it is currently possible to install
pose-formatinto a python 3.7 environment. However pose-format uses a feature implemented in Python 3.9, thestr.removesuffix()function. https://www.geeksforgeeks.org/python-string-removesuffix/Therefore it would be nice if we could add a dependency check to prevent such installs from happening.
Had a look at https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#dependencies-and-requirements and I guess we'd need a line along the lines of this?