Skip to content

Commit 96a0e58

Browse files
committed
Bump cachecontrol[filecache] from 0.12.11 to 0.13.0
Drop cwl-utils dependency for mypy to break the dependency loop
1 parent ae9fc13 commit 96a0e58

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

mypy-requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ black>=19.10b0
33
types-pkg_resources
44
types-requests
55
types-dataclasses
6-
cwl-utils
76
objgraph

requirements.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
ruamel.yaml >= 0.17.6, < 0.18;python_version>='3.7'
1+
requests >= 1.0
22
ruamel.yaml >= 0.16.12, < 0.18
3+
ruamel.yaml >= 0.17.6;python_version>='3.7'
34
rdflib>= 4.2.2, < 7.0.0
4-
rdflib>= 4.2.2, < 6.0.0;python_version<='3.6'
5+
rdflib< 6.0.0;python_version<='3.6'
56
rdflib-jsonld>=0.4.0, <= 0.6.1;python_version<='3.6'
67
mistune>=2.0.3,<2.1
7-
CacheControl[filecache]==0.12.11
8-
urllib3<2 # until there is a new CacheControl release containing a fix
8+
CacheControl[filecache]>= 0.11.7, < 0.14
9+
CacheControl[filecache]< 0.13;python_version<='3.6'
10+
urllib3<2;python_version<='3.6'
911
black<23.4
1012
mypy_extensions

schema_salad/tests/memory-leak-check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import sys
44

5-
import cwl_utils.parser
5+
import cwl_utils.parser # type: ignore[import]
66
import objgraph # type: ignore[import]
77

88
growth = []

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,15 @@
8181

8282
install_requires = [
8383
"requests >= 1.0",
84-
"ruamel.yaml >= 0.17.6, < 0.18;python_version>='3.7'",
8584
"ruamel.yaml >= 0.16.12, < 0.18",
85+
"ruamel.yaml >= 0.17.6;python_version>='3.7'",
8686
"rdflib >= 4.2.2, < 7.0.0",
87+
"rdflib < 6.0.0;python_version<='3.6'",
8788
"rdflib-jsonld>=0.4.0, <= 0.6.1;python_version<='3.6'",
8889
"mistune>=2.0.3,<2.1",
89-
"CacheControl[filecache] >= 0.11.7, < 0.13",
90-
"urllib3<2", # until CacheControl fixes their incompatability
90+
"CacheControl[filecache] >= 0.11.7, < 0.14",
91+
"CacheControl[filecache] < 0.13;python_version<='3.6'",
92+
"urllib3<2;python_version<='3.6'",
9193
"mypy_extensions",
9294
]
9395

0 commit comments

Comments
 (0)