Skip to content

Commit dbe5330

Browse files
ruamel.yaml: pin maximum version at 0.18 (#1852)
Co-authored-by: Michael R. Crusoe <[email protected]>
1 parent fd7db53 commit dbe5330

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

mypy-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
mypy==1.3.0 # also update pyproject.toml
2-
ruamel.yaml>=0.16.0,<0.17.28
2+
ruamel.yaml>=0.16.0,<0.18
33
schema-salad>=8.4,<9
44
cwl-utils >=0.22
55
types-requests

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requires = [
66
"types-requests",
77
"types-psutil",
88
"importlib_resources>=1.4", # equivalent to Python 3.9
9-
"ruamel.yaml>=0.16.0,<0.17.27",
9+
"ruamel.yaml>=0.16.0,<0.18",
1010
"schema-salad>=8.2.20211104054942,<9",
1111
"cwl-utils >=0.19",
1212
'toml',

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
requests>=2.6.1
2-
ruamel.yaml>=0.16.0,<0.17.28;python_version>='3.10'
3-
ruamel.yaml>=0.15,<0.17.28
2+
ruamel.yaml>=0.15.0,<0.18
3+
ruamel.yaml>=0.16;python_version>='3.10'
44
rdflib>=4.2.2,<6.4
5-
rdflib>= 4.2.2, < 6.0.0;python_version<='3.6'
5+
rdflib< 6.0.0;python_version<='3.6'
66
shellescape>=3.4.1,<3.9
77
schema-salad>=8.4,<9
88
prov==1.5.1

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@
112112
"setuptools",
113113
"requests >= 2.6.1", # >= 2.6.1 to workaround
114114
# https://github.com/ionrock/cachecontrol/issues/137
115-
"ruamel.yaml >= 0.15, < 0.17.28",
116-
"ruamel.yaml >= 0.16.0, <0.17.28;python_version>='3.10'",
115+
"ruamel.yaml >= 0.15, < 0.18",
116+
"ruamel.yaml >= 0.16.0;python_version>='3.10'",
117117
"rdflib >= 4.2.2, < 6.4.0",
118-
"rdflib >= 4.2.2, < 6.0.0;python_version<='3.6'",
118+
"rdflib < 6.0.0;python_version<='3.6'",
119119
"shellescape >= 3.4.1, < 3.9",
120120
"schema-salad >= 8.4, < 9",
121121
"prov == 1.5.1",

0 commit comments

Comments
 (0)