Skip to content

Commit

Permalink
relax version constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
aryarm authored Jan 2, 2024
1 parent 2b42ffc commit 2636cdf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
1 change: 0 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ def tests(session: Session) -> None:
channel="conda-forge",
)
install_handle_python(session)
session.run("bcftools", "--version")
session.run(
"python", "-m", "pytest", *cov_cli_args, *session.posargs
)
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

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

22 changes: 11 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@ exclude = [
]

[tool.poetry.dependencies]
python = ">=3.7.1,<4.0"
python = ">=3.7.1"
importlib-metadata = {version = ">=3.0.0", python = "<3.8"}
cyvcf2 = ">=0.30.4"
matplotlib = ">=3.1.2"
numpy = ">=1.17.3"
pandas = ">=1.2.0"
pybedtools = ">=0.8.0"
pysam = ">=0.15.4"
scikit-learn = ">=0.23.1"
scipy = ">=1.3.3"
statsmodels = ">=0.10.2"
pyfaidx = ">=0.5.6"
cyvcf2 = "*"
matplotlib = "*"
numpy = "*"
pandas = "*"
pybedtools = "*"
pysam = "*"
scikit-learn = "*"
scipy = "*"
statsmodels = "*"
pyfaidx = "*"

[tool.poetry.group.tests.dependencies]
pytest = ">=6.2.0"
Expand Down

0 comments on commit 2636cdf

Please sign in to comment.