Skip to content

Commit

Permalink
Bump cachecontrol[filecache] from 0.12.11 to 0.13.0
Browse files Browse the repository at this point in the history
Drop cwl-utils dependency for mypy to break the dependency loop
  • Loading branch information
mr-c committed Jun 1, 2023
1 parent ae9fc13 commit 96a0e58
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
1 change: 0 additions & 1 deletion mypy-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ black>=19.10b0
types-pkg_resources
types-requests
types-dataclasses
cwl-utils
objgraph
10 changes: 6 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
ruamel.yaml >= 0.17.6, < 0.18;python_version>='3.7'
requests >= 1.0
ruamel.yaml >= 0.16.12, < 0.18
ruamel.yaml >= 0.17.6;python_version>='3.7'
rdflib>= 4.2.2, < 7.0.0
rdflib>= 4.2.2, < 6.0.0;python_version<='3.6'
rdflib< 6.0.0;python_version<='3.6'
rdflib-jsonld>=0.4.0, <= 0.6.1;python_version<='3.6'
mistune>=2.0.3,<2.1
CacheControl[filecache]==0.12.11
urllib3<2 # until there is a new CacheControl release containing a fix
CacheControl[filecache]>= 0.11.7, < 0.14
CacheControl[filecache]< 0.13;python_version<='3.6'
urllib3<2;python_version<='3.6'
black<23.4
mypy_extensions
2 changes: 1 addition & 1 deletion schema_salad/tests/memory-leak-check.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

import cwl_utils.parser
import cwl_utils.parser # type: ignore[import]
import objgraph # type: ignore[import]

growth = []
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,15 @@

install_requires = [
"requests >= 1.0",
"ruamel.yaml >= 0.17.6, < 0.18;python_version>='3.7'",
"ruamel.yaml >= 0.16.12, < 0.18",
"ruamel.yaml >= 0.17.6;python_version>='3.7'",
"rdflib >= 4.2.2, < 7.0.0",
"rdflib < 6.0.0;python_version<='3.6'",
"rdflib-jsonld>=0.4.0, <= 0.6.1;python_version<='3.6'",
"mistune>=2.0.3,<2.1",
"CacheControl[filecache] >= 0.11.7, < 0.13",
"urllib3<2", # until CacheControl fixes their incompatability
"CacheControl[filecache] >= 0.11.7, < 0.14",
"CacheControl[filecache] < 0.13;python_version<='3.6'",
"urllib3<2;python_version<='3.6'",
"mypy_extensions",
]

Expand Down

0 comments on commit 96a0e58

Please sign in to comment.