Skip to content

Commit

Permalink
Constrain pyyaml below v6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nzlosh committed Sep 22, 2023
1 parent f3579f6 commit 153fdc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ clean:

.PHONY: venv
venv:
test -d $(VENV_DIR) || virtualenv -p $(PY3) $(VENV_DIR)
test -d $(VENV_DIR) || $(PY3) -m venv $(VENV_DIR)

.PHONY: reqs
reqs: venv
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jsonschema!=2.5.0,<3.0.0,>=2.0.0 # MIT
# networkx v2.6 does not support Python3.6. Update networkx to match st2
networkx>=2.5.1,<2.6
python-dateutil
PyYAML>=3.1.0 # MIT
PyYAML>=3.1.0,<6.0 # MIT
six>=1.9.0
stevedore>=1.3.0 # Apache-2.0
ujson>=1.35 # BSD License
Expand Down

0 comments on commit 153fdc9

Please sign in to comment.