Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/scripts/upstream_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ def install_deps() -> None:
)
upstream_deps = (
"git+https://github.com/dask/dask.git#egg=dask[array,dataframe]",
"git+https://github.com/dask/distributed.git#egg=distributed",
"git+https://github.com/pandas-dev/pandas#egg=pandas",
"git+https://github.com/pangeo-data/rechunker.git#egg=rechunker",
"git+https://github.com/pydata/xarray.git#egg=xarray",
Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,9 @@ dependencies = [
"numpy < 2.2",
"xarray < 2025.03.1",
"dask[array,dataframe] >= 2022.01.0, <= 2024.8.0",
"distributed >= 2022.01.0, <= 2024.8.0",
"scipy < 1.16",
"zarr >= 2.10.0, != 2.11.0, != 2.11.1, != 2.11.2, < 3",
"numba",
"typing-extensions",
"fsspec != 2021.6.*",
"scikit-learn",
"pandas",
Expand Down Expand Up @@ -98,7 +96,6 @@ known_third_party = [
"sgkit_plink",
"sklearn",
"sphinx",
"typing_extensions",
"xarray",
"yaml",
"zarr",
Expand Down
2 changes: 0 additions & 2 deletions requirements-numpy1.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
numpy < 2
xarray < 2025.03.1
dask[array,dataframe] >= 2023.01.0, <= 2024.8.0
distributed >= 2023.01.0, <= 2024.8.0
scipy < 1.16
typing-extensions
numba
zarr >= 2.10.0, != 2.11.0, != 2.11.1, != 2.11.2, < 3
fsspec != 2021.6.*
Expand Down
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
numpy < 2.2
xarray < 2025.03.1
dask[array,dataframe] >= 2023.01.0, <= 2024.8.0
distributed >= 2023.01.0, <= 2024.8.0
scipy < 1.16
typing-extensions
numba
zarr >= 2.10.0, != 2.11.0, != 2.11.1, != 2.11.2, < 3
fsspec != 2021.6.*
Expand Down
2 changes: 1 addition & 1 deletion sgkit/distance/api.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import typing
from typing import Literal

import dask.array as da
import numpy as np
from typing_extensions import Literal

from sgkit.typing import ArrayLike

Expand Down
3 changes: 1 addition & 2 deletions sgkit/stats/aggregation.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from typing import Hashable
from typing import Hashable, Literal

import numpy as np
import xarray as xr
from typing_extensions import Literal
from xarray import Dataset

import sgkit.distarray as da
Expand Down
3 changes: 1 addition & 2 deletions sgkit/stats/genedrop.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from typing import Hashable, Optional
from typing import Hashable, Literal, Optional

import dask.array as da
import numpy as np
import xarray as xr
from typing_extensions import Literal
from xarray import Dataset

from sgkit import variables
Expand Down
3 changes: 1 addition & 2 deletions sgkit/stats/grm.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from typing import Hashable, Optional, Tuple
from typing import Hashable, Literal, Optional, Tuple

import dask.array as da
import numpy as np
from typing_extensions import Literal
from xarray import Dataset

from sgkit import variables
Expand Down
3 changes: 1 addition & 2 deletions sgkit/stats/ibs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from typing import Hashable
from typing import Hashable, Literal

import dask.array as da
from typing_extensions import Literal
from xarray import Dataset

from sgkit import variables
Expand Down
3 changes: 1 addition & 2 deletions sgkit/stats/pca.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from typing import Any, Optional, Union
from typing import Any, Literal, Optional, Union

import numpy as np
import xarray as xr
from sklearn.base import BaseEstimator
from sklearn.pipeline import Pipeline
from typing_extensions import Literal
from xarray import DataArray, Dataset

import sgkit.distarray as da
Expand Down
3 changes: 1 addition & 2 deletions sgkit/stats/pedigree.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import warnings
from typing import Hashable, Tuple
from typing import Hashable, Literal, Optional, Tuple

import dask.array as da
import numpy as np
import xarray as xr
from typing_extensions import Literal, Optional
from xarray import Dataset

from sgkit import variables
Expand Down
Loading