Skip to content

Commit

Permalink
Lowered package requirements (python>=3.8 and various dependencies).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspersiebring committed Jul 25, 2023
1 parent 38440d2 commit 89fec2a
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 35 deletions.
107 changes: 76 additions & 31 deletions poetry.lock

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

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "libretro-finder"
version = "0.1.1"
version = "0.1.2"
description = "Command line utility that looks for specific BIOS files for libretro cores and, if found, refactors them to the expected format (i.e. name and directory structure)."
authors = ["Jasper <j.siebring92@gmail.com>"]
license = "GNU General Public License v3.0"
Expand All @@ -14,9 +14,9 @@ packages = [
libretro_finder = "libretro_finder.main:main"

[tool.poetry.dependencies]
python = "^3.11"
numpy = "^1.25.1"
pandas = "^2.0.3"
python = "^3.8"
numpy = "^1.15.0"
pandas = ">=1.1.5"
tqdm = "^4.65.0"

[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit 89fec2a

Please sign in to comment.