Skip to content

Commit 7f646b2

Browse files
authored
fix: disable numpy 2.0 since our dependencies don't yet work with it (#246)
1 parent 35eb06d commit 7f646b2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

dev-env.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ channels:
44
- nodefaults
55
dependencies:
66
- conda-forge::python=3.8 # the lowest version of python that we formally support
7-
- conda-forge::pip==23.3.2
8-
- conda-forge::poetry==1.7.1
9-
- conda-forge::nox==2023.04.22
10-
- conda-forge::poetry-plugin-export==1.6.0
7+
- conda-forge::pip==24.0
8+
- conda-forge::poetry==1.8.3
9+
- conda-forge::nox==2024.4.15
10+
- conda-forge::poetry-plugin-export==1.8.0
1111
- pip:
1212
- nox-poetry==1.0.3
1313
- poetry-conda==0.1.1

poetry.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ readme = "README.md"
1515

1616
[tool.poetry.dependencies]
1717
python = ">=3.7,<4.0"
18-
numpy = ">=1.20.0"
18+
numpy = ">=1.20.0,<2.0"
1919
click = ">=8.0.3"
2020
pysam = ">=0.19.0"
2121
cyvcf2 = ">=0.30.14"

0 commit comments

Comments
 (0)