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
Usually there is a python_requires which defines the oldest supported (tested) python version. Most libraries sync their supported versions with the officially supported python versions.
Some more reasons from AI:
Compatibility Check: It helps to ensure your package is installed only on compatible Python versions.
Better User Experience: Users will be notified if their Python version is incompatible with your package, preventing installation issues.
Automated Tools: Tools like pip will respect this requirement and prevent the installation of your package on incompatible Python versions.
The text was updated successfully, but these errors were encountered:
Currently there is no clear statement which python versions are supported or supposed to work.
The only hint it the automated test which are
imagehash/.github/workflows/testing.yml
Line 19 in 07951cd
Usually there is a
python_requires
which defines the oldest supported (tested) python version. Most libraries sync their supported versions with the officially supported python versions.Some more reasons from AI:
The text was updated successfully, but these errors were encountered: