Skip to content

Commit 782ccb6

Browse files
committed
bump max ruamel.yaml version for all Python version
1 parent c49c5c5 commit 782ccb6

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DEVPKGS=diff_cover black pylint pep257 pydocstyle flake8 tox tox-pyenv \
3232
-rtest-requirements.txt -rmypy-requirements.txt
3333
DEBDEVPKGS=pylint python3-coverage sloccount \
3434
python3-flake8 shellcheck
35-
VERSION=1.2.5 # please also update setup.py
35+
VERSION=1.2.6 # please also update setup.py
3636

3737
## all : default task (install cwl-upgrader in dev mode)
3838
all: dev

requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ruamel.yaml >= 0.16.0, < 0.17.22;python_version>='3.10'
2-
ruamel.yaml >= 0.15.98, < 0.17.22;python_version>='3.9'
3-
ruamel.yaml >= 0.15.78, < 0.17.22;python_version>='3.8'
1+
ruamel.yaml >= 0.16.0, < 0.17.23;python_version>='3.10'
2+
ruamel.yaml >= 0.15.98, < 0.17.23;python_version>='3.9'
3+
ruamel.yaml >= 0.15.78, < 0.17.23;python_version>='3.8'
44
ruamel.yaml >= 0.15.71, < 0.17.23
55
schema-salad

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name="cwl-upgrader",
16-
version="1.2.5",
16+
version="1.2.6",
1717
description="Common Workflow Language standalone document upgrader",
1818
long_description=open(README).read(),
1919
author="Common Workflow Language contributors",
@@ -27,9 +27,9 @@
2727
package_data={"cwlupgrader.tests": ["../testdata/**/*.cwl"]},
2828
install_requires=[
2929
"setuptools",
30-
"ruamel.yaml >= 0.16.0, < 0.17.22;python_version>='3.10'",
31-
"ruamel.yaml >= 0.15.98, < 0.17.22;python_version>='3.9'",
32-
"ruamel.yaml >= 0.15.78, < 0.17.22;python_version>='3.8'",
30+
"ruamel.yaml >= 0.16.0, < 0.17.23;python_version>='3.10'",
31+
"ruamel.yaml >= 0.15.98, < 0.17.23;python_version>='3.9'",
32+
"ruamel.yaml >= 0.15.78, < 0.17.23;python_version>='3.8'",
3333
"ruamel.yaml >= 0.15.71, < 0.17.23",
3434
"schema_salad",
3535
],

0 commit comments

Comments
 (0)