Skip to content

Commit ec80709

Browse files
authored
Fix malformed version on aniso8601 requirement
This was changed on #935 to fix a warning when installing newer versions but we are now getting an error that 6.0.0 doesn't match 6.0.*: ``` ERROR: graphene 2.1.5 has requirement aniso8601<=6.0.*,>=3, but you'll have aniso8601 6.0.0 which is incompatible. ``` I don't think that the `*` are recognized as the same version than.
1 parent 40229b8 commit ec80709

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def run_tests(self):
8787
"six>=1.10.0,<2",
8888
"graphql-core>=2.1,<3",
8989
"graphql-relay>=0.4.5,<1",
90-
"aniso8601>=3,<=6.0.*",
90+
"aniso8601>=3,<=6",
9191
],
9292
tests_require=tests_require,
9393
extras_require={

0 commit comments

Comments
 (0)