Skip to content

Commit

Permalink
Fixed dependency issue of safety with packaging
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <[email protected]>
  • Loading branch information
andy-maier committed Nov 27, 2023
1 parent 4618e9e commit cb6d261
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ build>=0.5.0
pep517>=0.9.1

# Safety CI by pyup.io
safety>=2.2.0
dparse>=0.6.2
# Safety is run only on Python >=3.6
# Safety 2.3.5 (running only on Python >=3.6) requires packaging<22.0,>=21.0, but safety 2.3.4 does not
# and safety 2.4.0 will also no longer pin it (see https://github.com/pyupio/safety/issues/455).
safety>=2.2.0,!=2.3.5; python_version >= '3.6'
dparse>=0.6.2; python_version >= '3.6'
ruamel.yaml>=0.17.21,<0.17.22; python_version == '3.6'
ruamel.yaml>=0.17.21; python_version >= '3.7'

Expand Down

0 comments on commit cb6d261

Please sign in to comment.