Skip to content

Commit ae95827

Browse files
committed
clean up pyproject.toml
1 parent 757f503 commit ae95827

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

pyproject.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66
name = "array-api-extra"
77
authors = [
88
{ name = "Lucas Colley", email = "[email protected]" },
9-
{ name = "Open Source Contributors" },
9+
# { name = "Open Source Contributors" }, # https://github.com/pypi/warehouse/issues/14813
1010
]
1111
description = "Extra array functions built on top of the array API standard."
1212
readme = "README.md"
@@ -46,7 +46,6 @@ docs = [
4646
[project.urls]
4747
Homepage = "https://github.com/data-apis/array-api-extra"
4848
"Bug Tracker" = "https://github.com/data-apis/array-api-extra/issues"
49-
Discussions = "https://github.com/data-apis/array-api-extra/discussions"
5049
Changelog = "https://github.com/data-apis/array-api-extra/releases"
5150

5251

@@ -102,11 +101,10 @@ tests-vendor = { cmd = "pytest vendor_tests" }
102101
[tool.pixi.feature.docs.dependencies]
103102
sphinx = ">=7.0"
104103
furo = ">=2023.08.17"
105-
106-
[tool.pixi.feature.docs.pypi-dependencies]
107-
myst_parser = ">=0.13"
108-
sphinx_copybutton = "*"
109-
sphinx_autodoc_typehints = "*"
104+
myst-parser = ">=0.13"
105+
sphinx-copybutton = "*"
106+
sphinx-autodoc-typehints = "*"
107+
typing_extensions = ">=4.12.2,<4.13"
110108

111109
[tool.pixi.feature.docs.tasks]
112110
docs = { cmd = ["sphinx-build", ".", "build/"], cwd = "docs" }
@@ -197,7 +195,7 @@ reportUnknownMemberType = false
197195
# Ruff
198196

199197
[tool.ruff]
200-
target-version = "py39"
198+
target-version = "py310"
201199

202200
[tool.ruff.lint]
203201
extend-select = [
@@ -228,7 +226,6 @@ ignore = [
228226
"PLR2004", # Magic value used in comparison
229227
"ISC001", # Conflicts with formatter
230228
]
231-
isort.required-imports = ["from __future__ import annotations"]
232229

233230
[tool.ruff.lint.per-file-ignores]
234231
"tests/**" = ["T20"]

0 commit comments

Comments
 (0)