Skip to content

Commit f0616d3

Browse files
committed
Fix incorrect "Numpy" require in "pyproject.toml" file.
1 parent ec529c8 commit f0616d3

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,7 @@ development = [
121121
"twine",
122122
]
123123
plotting = [ "matplotlib" ]
124-
read-the-docs = [
125-
"matplotlib",
126-
"numpy",
127-
"pydata-sphinx-theme",
128-
"sphinxcontrib-bibtex"
129-
]
124+
read-the-docs = [ "matplotlib", "pydata-sphinx-theme", "sphinxcontrib-bibtex" ]
130125

131126
[tool.black]
132127
line-length = 79

tasks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,6 @@ def sub_callable(match):
387387
),
388388
source,
389389
)
390-
source = re.sub('{.*extra == "read-the-docs".*', "{", source)
391390
source = re.sub(
392391
"setup_kwargs = {(.*)}.*setup\\(\\*\\*setup_kwargs\\)",
393392
sub_callable,

0 commit comments

Comments
 (0)