Skip to content

Commit

Permalink
[Requirements] Limit storey to <0.8.12 (#1549)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hedingber committed Dec 6, 2021
1 parent cf5375e commit 9fea20b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ fsspec~=2021.8.1
v3iofs~=0.1.7
# 3.4 and above failed builidng in some images - see https://github.com/pyca/cryptography/issues/5771
cryptography~=3.0, <3.4
storey~=0.8.11; python_version >= '3.7'
# In 0.8.12 the requirements loosen too much so pip resolver never finds a resolution
storey~=0.8.11, <0.8.12; python_version >= '3.7'
deepdiff~=5.0
pymysql~=1.0
inflection~=0.5.0
1 change: 1 addition & 0 deletions tests/test_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ def test_requirement_specifiers_convention():
"aiobotocore": {"~=1.4.0"},
"aiohttp": {">=3.6,<3.8"},
"bokeh": {"~=2.3.0"},
"storey": {"~=0.8.11, <0.8.12; python_version >= '3.7'"},
# Black is not stable yet and does not have a release that is not beta, so can't be used with ~=
"black": {"<=19.10b0"},
# These 2 are used in a tests that is purposed to test requirement without specifiers
Expand Down

0 comments on commit 9fea20b

Please sign in to comment.