Skip to content

Commit

Permalink
chore: fix update_native_dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Jan 29, 2024
1 parent 12ffabc commit 75f81f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def update_python_tools(session):

@nox.session(python="3.11", reuse_venv=True)
def update_native_dependencies(session):
session.install("lastversion!=1.6.0,!=2.0.0", "packaging", "requests")
session.install("lastversion>=3.5.0", "packaging", "requests")
session.run("python", "tools/update_native_dependencies.py", *session.posargs)


Expand Down
2 changes: 1 addition & 1 deletion tools/update_native_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import requests

from lastversion import latest
from lastversion.Version import Version
from lastversion.version import Version


PROJECT_ROOT = Path(__file__).parent.parent.resolve(strict=True)
Expand Down

0 comments on commit 75f81f4

Please sign in to comment.