Skip to content

Commit

Permalink
feat: clamped down on dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
WyvernIXTL committed Nov 4, 2024
1 parent 88b819d commit a7defda
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ classifiers = [
dynamic = ["version"]

dependencies = [
"colorama",
"tqdm",
"numpy",
"requests",
"pygame",
"typer",
"rich",
"freesimplegui>=5.1.1",
"colorama >=0.4.6,<0.5",
"tqdm >=4.66.6,<5",
"numpy >=2.1.2,<3",
"requests >=2.32.3,<3",
"pygame >=2.6.1,<3",
"typer >=0.12.5,<0.13",
"rich >=13.9.4,<14",
"freesimplegui >=5.1.1,<6",
]


Expand All @@ -56,8 +56,8 @@ gamepadla = "gamepadla_plus.__main__:run"

[dependency-groups]
license-fetching = [
"pip-licenses>=5.0.0",
"pip-licenses>=5.0.0,<6",
]
pyinstaller = [
"pyinstaller>=6.11.0",
"pyinstaller>=6.11.0,<7",
]
22 changes: 11 additions & 11 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a7defda

Please sign in to comment.