Skip to content

Commit

Permalink
fix: solve numpy version compatibilities (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Aug 4, 2024
1 parent f4c3eed commit d2732d0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.12"]
python-version: ["3.9", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
19 changes: 9 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ authors = [
]
license = "Apache-2.0"
readme = {"file" = "README.md", "content-type" = "text/markdown"}
requires-python = ">=3.8"
requires-python = ">=3.9"
# Please consult https://pypi.org/classifiers/ for a full list.
classifiers = [
"Development Status :: 4 - Beta",
Expand All @@ -30,7 +30,6 @@ classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -52,11 +51,11 @@ keywords = [
dynamic = ["version"]
dependencies = [
"depinfo ~=2.2",
"numpy ~=1.20",
"pandas ~=1.4",
"pandera ~=0.14",
"taxopy ~=0.12",
"typer ~=0.6",
"numpy ~=1.26",
"pandas ~=2.1",
"pandera ~=0.19",
"taxopy ~=0.13",
"typer ~=0.12",
]

[project.urls]
Expand All @@ -71,14 +70,14 @@ taxpasta = "taxpasta.infrastructure.cli:app"

[project.optional-dependencies]
all = [
"biom-format",
"biom-format >=2.1.16,<3",
"odfpy",
"openpyxl",
"pyarrow",
"rich",
]
arrow = ["pyarrow"]
biom = ["biom-format"]
biom = ["biom-format >=2.1.16,<3"]
ods = ["odfpy"]
parquet = ["pyarrow"]
rich = ["rich"]
Expand Down Expand Up @@ -280,7 +279,7 @@ extra-dependencies = [
features = ["all"]

[[tool.hatch.envs.test.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
python = ["3.9", "3.10", "3.11", "3.12"]

[tool.hatch.envs.test.scripts]
run = "pytest --cov=taxpasta --cov-report=term-missing {args}"

0 comments on commit d2732d0

Please sign in to comment.