Skip to content

Commit

Permalink
Avoid minimum reqs without binary wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Apr 14, 2024
1 parent 113c85c commit d8cd992
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
8 changes: 1 addition & 7 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
vtool_ibeis
===========

|Pypi| |Downloads| |Codecov| |Travis| |Appveyor|
|Pypi| |Downloads| |Codecov|

Vision Tools - tools for computer vision. Part of the WildMe / IBEIS Project.

Expand All @@ -27,12 +27,6 @@ Repos relevant to the ibeis project:
* https://github.com/Erotemic/ibeis


.. |CircleCI| image:: https://circleci.com/gh/Erotemic/vtool_ibeis.svg?style=svg
:target: https://circleci.com/gh/Erotemic/vtool_ibeis
.. |Travis| image:: https://img.shields.io/travis/Erotemic/vtool_ibeis/master.svg?label=Travis%20CI
:target: https://travis-ci.org/Erotemic/vtool_ibeis?branch=master
.. |Appveyor| image:: https://ci.appveyor.com/api/projects/status/github/Erotemic/vtool_ibeis?branch=master&svg=True
:target: https://ci.appveyor.com/project/Erotemic/vtool_ibeis/branch/master
.. |Codecov| image:: https://codecov.io/github/Erotemic/vtool_ibeis/badge.svg?branch=master&service=github
:target: https://codecov.io/github/Erotemic/vtool_ibeis?branch=master
.. |Pypi| image:: https://img.shields.io/pypi/v/vtool_ibeis.svg
Expand Down
9 changes: 6 additions & 3 deletions requirements/runtime.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ networkx>=2.5 ; python_version < '3.7' and python_version >= '3.6' # Py
networkx>=2.3 ; python_version < '3.6' and python_version >= '3.5' # Python 3.5
networkx>=1.11 ; python_version < '3.5' and python_version >= '2.7' # Python 2.7

Pillow>=9.4.0 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+
Pillow>=10.0.0 ; python_version < '4.0' and python_version >= '3.12' # Python 3.12+
Pillow>=9.4.0 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11
Pillow>=9.1.0 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10
Pillow>=8.3.2 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
Pillow>=8.3.2 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8
Expand All @@ -35,7 +36,8 @@ scipy>=1.6.0 ; python_version < '3.8' and python_version >= '3.7' # Pytho

six >= 1.10.0

scikit-image>=0.19.3 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+
scikit-image>=0.22.0 ; python_version < '4.0' and python_version >= '3.12' # Python 3.12+
scikit-image>=0.20.0 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11
scikit-image>=0.19.0 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10
scikit-image>=0.18.0 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
scikit-image>=0.17.2 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8
Expand All @@ -50,7 +52,8 @@ scikit-learn>=1.0.2 ; python_version < '3.9' and python_version >= '3.8'
scikit-learn>=0.24.1 ; python_version < '3.8' and python_version >= '3.7' # Python 3.7
scikit-learn>=0.24.1 ; python_version < '3.7' and python_version >= '3.6' # Python 3.6

statsmodels>=0.13.3 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+
statsmodels>=0.14.0 ; python_version < '4.0' and python_version >= '3.12' # Python 3.12+
statsmodels>=0.13.3 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11
statsmodels>=0.13.1 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10
statsmodels>=0.13.1 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
statsmodels>=0.13.1 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8
Expand Down

0 comments on commit d8cd992

Please sign in to comment.