Skip to content

Commit 7e5102a

Browse files
committed
main version
1 parent aaccbda commit 7e5102a

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,12 @@ classifiers = [
2323
"Programming Language :: Python :: 3.14",
2424
]
2525
dynamic = [ "description", "readme", "version" ]
26-
dependencies = [ "array-api-compat", "numpy>=2" ]
26+
dependencies = [ "numpy>=2" ]
2727
optional-dependencies.accel = [ "numba>=0.57" ]
2828
optional-dependencies.dask = [ "dask>=2023.6.1" ]
2929
optional-dependencies.full = [ "fast-array-utils[accel,dask,sparse]", "h5py", "zarr" ]
30-
optional-dependencies.jax = [ "jax", "jaxlib" ]
3130
optional-dependencies.sparse = [ "scipy>=1.13" ]
3231
optional-dependencies.testing = [ "packaging" ]
33-
optional-dependencies.torch = [ "torch" ]
3432
urls."Issue Tracker" = "https://github.com/scverse/fast-array-utils/issues"
3533
urls."Source Code" = "https://github.com/scverse/fast-array-utils"
3634
urls.Documentation = "https://icb-fast-array-utils.readthedocs-hosted.com/"
@@ -66,13 +64,14 @@ envs.docs.dependency-groups = [ "doc" ]
6664
envs.docs.scripts.build = "sphinx-build -M html docs docs/_build"
6765
envs.docs.scripts.clean = "git clean -fdX docs"
6866
envs.docs.scripts.open = "python -m webbrowser -t docs/_build/html/index.html"
69-
envs.hatch-test.default-args = []
67+
envs.hatch-test.default-args = [ ]
7068
envs.hatch-test.dependency-groups = [ "test-min" ]
7169
# TODO: remove scipy once https://github.com/pypa/hatch/pull/2127 is released
7270
envs.hatch-test.extra-dependencies = [ "ipykernel", "ipycytoscape", "scipy" ]
7371
envs.hatch-test.env-vars.CODSPEED_PROFILE_FOLDER = "test-data/codspeed"
7472
envs.hatch-test.overrides.matrix.extras.features = [
7573
{ if = [ "full" ], value = "full" },
74+
{ if = [ "full" ], value = "jax" },
7675
]
7776
envs.hatch-test.overrides.matrix.extras.dependency-groups = [
7877
{ if = [ "full" ], value = "test" },
@@ -91,7 +90,7 @@ metadata.hooks.docstring-description = {}
9190
metadata.hooks.fancy-pypi-readme.content-type = "text/x-rst"
9291
metadata.hooks.fancy-pypi-readme.fragments = [ { path = "README.rst", start-after = ".. begin" } ]
9392
version.source = "vcs"
94-
version.raw-options = { local_scheme = "no-local-version" } # be able to publish dev version
93+
version.raw-options = { local_scheme = "no-local-version" } # be able to publish dev version
9594

9695
[tool.uv]
9796
override-dependencies = [ "sphinx>=9.0.1" ]
@@ -132,7 +131,7 @@ lint.per-file-ignores."typings/**/*.pyi" = [ "A002", "F403", "F405", "N801" ]
132131
lint.allowed-confusables = [ "×", "" ]
133132
lint.flake8-bugbear.extend-immutable-calls = [ "testing.fast_array_utils.Flags" ]
134133
lint.flake8-copyright.notice-rgx = "SPDX-License-Identifier: MPL-2\\.0"
135-
lint.flake8-type-checking.exempt-modules = []
134+
lint.flake8-type-checking.exempt-modules = [ ]
136135
lint.flake8-type-checking.strict = true
137136
lint.isort.known-first-party = [ "fast_array_utils" ]
138137
lint.isort.lines-after-imports = 2

0 commit comments

Comments
 (0)