Refactor dependencies in pyproject.toml and requirements.txt for consistency and clarity

This commit is contained in:
William Valentin
2025-07-24 11:01:36 -07:00
parent aed332d914
commit 0a0e5cb75c
2 changed files with 21 additions and 18 deletions

View File

@@ -39,8 +39,6 @@ package-mode = false
pre-commit = "^4.2.0"
pyinstaller = "^6.14.2"
[tool.poetry.dependencies]
contourpy = "==1.3.2"
cycler = "==0.12.1"
@@ -65,3 +63,6 @@ pyinstaller = "*"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"

View File

@@ -1,16 +1,18 @@
-i https://pypi.org/simple
colorlog==6.9.0; python_version >= '3.6'
contourpy==1.3.2; python_version >= '3.10'
cycler==0.12.1; python_version >= '3.8'
fonttools==4.58.5; python_version >= '3.9'
kiwisolver==1.4.8; python_version >= '3.10'
matplotlib==3.10.3; python_version >= '3.10'
numpy==2.3.1; python_version >= '3.11'
packaging==25.0; python_version >= '3.8'
pandas==2.3.1; python_version >= '3.9'
pillow==11.3.0; python_version >= '3.9'
pyparsing==3.2.3; python_version >= '3.9'
python-dateutil==2.9.0.post0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'
pytz==2025.2
six==1.17.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'
tzdata==2025.2; python_version >= '2'
colorama==0.4.6 ; python_version == "3.13" and sys_platform == "win32"
colorlog==6.9.0 ; python_version == "3.13"
contourpy==1.3.2 ; python_version == "3.13"
cycler==0.12.1 ; python_version == "3.13"
dotenv==0.9.9 ; python_version == "3.13"
fonttools==4.59.0 ; python_version == "3.13"
kiwisolver==1.4.8 ; python_version == "3.13"
matplotlib==3.10.3 ; python_version == "3.13"
numpy==2.3.1 ; python_version == "3.13"
packaging==25.0 ; python_version == "3.13"
pandas==2.3.1 ; python_version == "3.13"
pillow==11.3.0 ; python_version == "3.13"
pyparsing==3.2.3 ; python_version == "3.13"
python-dateutil==2.9.0.post0 ; python_version == "3.13"
python-dotenv==1.1.1 ; python_version == "3.13"
pytz==2025.2 ; python_version == "3.13"
six==1.17.0 ; python_version == "3.13"
tzdata==2025.2 ; python_version == "3.13"