Skip to content

Commit

Permalink
Allow later versions of filelock, psutils - unblock safety upgrades.
Browse files Browse the repository at this point in the history
filelock dependency was introduced in July 4, 2024. However the pinned
version was already outdated at that time.

This means that projects that had requirement files where filelock had
already been upgraded to the latest are now stuck with safety 3.2.3
(the last one released without the new dependency).

The commit adding the dependency makes no case for pinning the specific
version. So it looks more like an oversight, and allowing later versions
should work.

Similarly, psutil is also allowed later versions.
  • Loading branch information
m000 committed Nov 29, 2024
1 parent 223ad60 commit e85fd1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ install_requires =
pydantic>=1.10.12
safety_schemas>=0.0.8
typing-extensions>=4.7.1
filelock~=3.12.2
psutil~=6.0.0
filelock>=3.12.2
psutil>=6.0.0

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit e85fd1a

Please sign in to comment.