Skip to content

Commit

Permalink
fix: pyyaml dependency for python version older than 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hfudev committed Nov 13, 2023
1 parent 7b975bb commit 19322aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ dependencies = [
"pathlib; python_version < '3.4'",
"glob2; python_version < '3.5'",
"pyparsing",
"pyyaml",
"pyyaml>=5.3; python_version >= '3.5'",
"pyyaml<5.3; python_version < '3.5'",
"packaging",
"toml; python_version < '3.11'",
]
Expand Down

0 comments on commit 19322aa

Please sign in to comment.