Skip to content
Snippets Groups Projects
Commit b19216f0 authored by mjbonifa's avatar mjbonifa
Browse files

fix: pyproject.toml was originally created from the conda.yaml which was an...

fix: pyproject.toml was originally created from the conda.yaml which was an export of a conda environment. This provided libraries with specific versions on dependency packages. We don't need to pin the packages to specific versions. We are also not using hatch which handles dependencies between packages well. Remvoed all versions from the dependancies and numpy is now v2.2.3 and all tests pass. Closes #18.
parent a785fed4
No related branches found
No related tags found
No related merge requests found
...@@ -15,28 +15,28 @@ license = { file = "LICENSE" } ...@@ -15,28 +15,28 @@ license = { file = "LICENSE" }
requires-python = ">=3.9" requires-python = ">=3.9"
dependencies = [ dependencies = [
"aiosqlite==0.21.0", "aiosqlite",
"click==8.1.8", "click",
"cramjam==2.9.1", "cramjam",
"et-xmlfile==2.0.0", "et-xmlfile",
"fastparquet==2024.11.0", "fastparquet",
"fsspec==2025.2.0", "fsspec",
"gitdb==4.0.12", "gitdb",
"gitpython==3.1.44", "gitpython",
"greenlet==3.1.1", "greenlet",
"iniconfig==2.0.0", "iniconfig",
"lxml==5.3.1", "lxml",
"numpy<2", "numpy",
"openpyxl==3.1.5", "openpyxl",
"pluggy==1.5.0", "pluggy",
"pyarrow==19.0.0", "pyarrow",
"pyomop==4.3.0", "pyomop",
"tables==3.9.2", "tables",
"pytest==8.3.4", "pytest",
"requests==2.32.3", "requests",
"simpledbf==0.2.6", "simpledbf",
"smmap==5.0.2", "smmap",
"sqlalchemy==2.0.38" "sqlalchemy"
] ]
[project.scripts] [project.scripts]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment