Skip to content

Commit c9a8f85

Browse files
committed
Merge branch 'array-api-implementation' of https://github.com/amalia-k510/fast-array-utils into array-api-implementation
2 parents c1bb155 + cca3ad6 commit c9a8f85

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ 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" ]
3030
optional-dependencies.jax = [ "jax", "jaxlib" ]
31-
optional-dependencies.torch = [ "torch" ]
3231
optional-dependencies.sparse = [ "scipy>=1.13" ]
3332
optional-dependencies.testing = [ "packaging" ]
33+
optional-dependencies.torch = [ "torch" ]
3434
urls."Issue Tracker" = "https://github.com/scverse/fast-array-utils/issues"
3535
urls."Source Code" = "https://github.com/scverse/fast-array-utils"
3636
urls.Documentation = "https://icb-fast-array-utils.readthedocs-hosted.com/"
@@ -75,7 +75,7 @@ envs.docs.dependency-groups = [ "doc" ]
7575
envs.docs.scripts.build = "sphinx-build -M html docs docs/_build"
7676
envs.docs.scripts.clean = "git clean -fdX docs"
7777
envs.docs.scripts.open = "python -m webbrowser -t docs/_build/html/index.html"
78-
envs.hatch-test.default-args = [ ]
78+
envs.hatch-test.default-args = []
7979
envs.hatch-test.dependency-groups = [ "test-min" ]
8080
# TODO: remove scipy once https://github.com/pypa/hatch/pull/2127 is released
8181
envs.hatch-test.extra-dependencies = [ "ipykernel", "ipycytoscape", "scipy" ]
@@ -100,7 +100,7 @@ metadata.hooks.docstring-description = {}
100100
metadata.hooks.fancy-pypi-readme.content-type = "text/x-rst"
101101
metadata.hooks.fancy-pypi-readme.fragments = [ { path = "README.rst", start-after = ".. begin" } ]
102102
version.source = "vcs"
103-
version.raw-options = { local_scheme = "no-local-version" } # be able to publish dev version
103+
version.raw-options = { local_scheme = "no-local-version" } # be able to publish dev version
104104

105105
[tool.uv]
106106
override-dependencies = [ "sphinx>=9.0.1" ]
@@ -141,7 +141,7 @@ lint.per-file-ignores."typings/**/*.pyi" = [ "A002", "F403", "F405", "N801" ]
141141
lint.allowed-confusables = [ "×", "" ]
142142
lint.flake8-bugbear.extend-immutable-calls = [ "testing.fast_array_utils.Flags" ]
143143
lint.flake8-copyright.notice-rgx = "SPDX-License-Identifier: MPL-2\\.0"
144-
lint.flake8-type-checking.exempt-modules = [ ]
144+
lint.flake8-type-checking.exempt-modules = []
145145
lint.flake8-type-checking.strict = true
146146
lint.isort.known-first-party = [ "fast_array_utils" ]
147147
lint.isort.lines-after-imports = 2

0 commit comments

Comments
 (0)