Skip to content

Commit

Permalink
bump max ruamel.yaml version for all Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed May 2, 2023
1 parent c49c5c5 commit 782ccb6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ DEVPKGS=diff_cover black pylint pep257 pydocstyle flake8 tox tox-pyenv \
-rtest-requirements.txt -rmypy-requirements.txt
DEBDEVPKGS=pylint python3-coverage sloccount \
python3-flake8 shellcheck
VERSION=1.2.5 # please also update setup.py
VERSION=1.2.6 # please also update setup.py

## all : default task (install cwl-upgrader in dev mode)
all: dev
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ruamel.yaml >= 0.16.0, < 0.17.22;python_version>='3.10'
ruamel.yaml >= 0.15.98, < 0.17.22;python_version>='3.9'
ruamel.yaml >= 0.15.78, < 0.17.22;python_version>='3.8'
ruamel.yaml >= 0.16.0, < 0.17.23;python_version>='3.10'
ruamel.yaml >= 0.15.98, < 0.17.23;python_version>='3.9'
ruamel.yaml >= 0.15.78, < 0.17.23;python_version>='3.8'
ruamel.yaml >= 0.15.71, < 0.17.23
schema-salad
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="cwl-upgrader",
version="1.2.5",
version="1.2.6",
description="Common Workflow Language standalone document upgrader",
long_description=open(README).read(),
author="Common Workflow Language contributors",
Expand All @@ -27,9 +27,9 @@
package_data={"cwlupgrader.tests": ["../testdata/**/*.cwl"]},
install_requires=[
"setuptools",
"ruamel.yaml >= 0.16.0, < 0.17.22;python_version>='3.10'",
"ruamel.yaml >= 0.15.98, < 0.17.22;python_version>='3.9'",
"ruamel.yaml >= 0.15.78, < 0.17.22;python_version>='3.8'",
"ruamel.yaml >= 0.16.0, < 0.17.23;python_version>='3.10'",
"ruamel.yaml >= 0.15.98, < 0.17.23;python_version>='3.9'",
"ruamel.yaml >= 0.15.78, < 0.17.23;python_version>='3.8'",
"ruamel.yaml >= 0.15.71, < 0.17.23",
"schema_salad",
],
Expand Down

0 comments on commit 782ccb6

Please sign in to comment.