Skip to content

Commit

Permalink
fixed invalid version specifiers in a test index
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderr committed Oct 27, 2022
1 parent 7f0bd82 commit 3d71c81
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
30 changes: 15 additions & 15 deletions tests/functional/python/inputs/index/same-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,37 @@
"package-a": {
"0.1.0": {
"dependencies": [
"package-x=='0.1.0'; extra == 'x'",
"package-y=='0.1.0'; extra == 'y'",
"package-z=='0.1.0'; extra == 'z'"
"package-x==0.1.0; extra == 'x'",
"package-y==0.1.0; extra == 'y'",
"package-z==0.1.0; extra == 'z'"
]
},
"1.0.0": {
"dependencies": [
"package-x=='1.0.0'; extra == 'x'",
"package-y=='1.0.0'; extra == 'y'",
"package-z=='1.0.0'; extra == 'z'"
"package-x==1.0.0; extra == 'x'",
"package-y==1.0.0; extra == 'y'",
"package-z==1.0.0; extra == 'z'"
]
},
"1.1.0": {
"dependencies": [
"package-x=='1.1.0'; extra == 'x'",
"package-y=='1.1.0'; extra == 'y'",
"package-z=='1.1.0'; extra == 'z'"
"package-x==1.1.0; extra == 'x'",
"package-y==1.1.0; extra == 'y'",
"package-z==1.1.0; extra == 'z'"
]
},
"1.2.0": {
"dependencies": [
"package-x=='1.2.0'; extra == 'x'",
"package-y=='1.2.0'; extra == 'y'",
"package-z=='1.2.0'; extra == 'z'"
"package-x==1.2.0; extra == 'x'",
"package-y==1.2.0; extra == 'y'",
"package-z==1.2.0; extra == 'z'"
]
},
"1.3.0": {
"dependencies": [
"package-x=='1.3.0'; extra == 'x'",
"package-y=='1.3.0'; extra == 'y'",
"package-z=='1.3.0'; extra == 'z'"
"package-x==1.3.0; extra == 'x'",
"package-y==1.3.0; extra == 'y'",
"package-z==1.3.0; extra == 'z'"
]
}
},
Expand Down
1 change: 0 additions & 1 deletion tests/functional/python/test_resolvers_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ def get_dependencies(self, candidate):

XFAIL_CASES = {
"pyrex-1.9.8.json": "Too many rounds (>500)",
"same-package-extras.json": "State not cleaned up correctly",
}


Expand Down

0 comments on commit 3d71c81

Please sign in to comment.