Skip to content

Commit 74ea21b

Browse files
committed
use rdflib<7 upper bound (for compatibility with prov)
1 parent 30d0c7a commit 74ea21b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cwltool.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN rm /wheels/schema_salad*
1111
RUN pip install "black~=22.0"
1212
# galaxy-util 22.1.x depends on packaging<22, but black 23.x needs packaging>22
1313
RUN SCHEMA_SALAD_USE_MYPYC=1 MYPYPATH=mypy-stubs pip wheel --no-binary schema-salad \
14-
$(grep schema.salad requirements.txt) "black~=22.0" --wheel-dir=/wheels # --verbose
14+
$(grep schema.salad requirements.txt) "black~=22.0" "rdflib<7" --wheel-dir=/wheels # --verbose
1515
RUN pip install --force-reinstall --no-index --no-warn-script-location \
1616
--root=/pythonroot/ /wheels/*.whl
1717
# --force-reinstall to install our new mypyc compiled schema-salad package

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
requests>=2.6.1
22
ruamel.yaml>=0.16.0,<0.19
3-
rdflib>=4.2.2,<7.1
3+
rdflib>=4.2.2,<7
44
shellescape>=3.4.1,<3.9
55
schema-salad>=8.4.20230426093816,<9
66
prov==2.0.1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
"requests >= 2.6.1", # >= 2.6.1 to workaround
126126
# https://github.com/ionrock/cachecontrol/issues/137
127127
"ruamel.yaml >= 0.16, < 0.19",
128-
"rdflib >= 4.2.2, < 7.1.0",
128+
"rdflib >= 4.2.2, < 7",
129129
"shellescape >= 3.4.1, < 3.9",
130130
"schema-salad >= 8.4.20230426093816, < 9",
131131
"prov == 2.0.1",

0 commit comments

Comments
 (0)