Skip to content

Commit df7cd2b

Browse files
authored
📌 SciPy 1.15.1 (#414)
2 parents 5a8e8b9 + 0c1de93 commit df7cd2b

File tree

4 files changed

+134
-138
lines changed

4 files changed

+134
-138
lines changed

‎.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ repos:
5555
- id: typos
5656

5757
- repo: https://github.com/astral-sh/ruff-pre-commit
58-
rev: v0.9.0
58+
rev: v0.9.1
5959
hooks:
6060
- id: ruff
6161
args: [--fix, --show-fixes]

‎pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "scipy-stubs"
7-
version = "1.15.0.1.dev0"
8-
description = "Precise type-hints for all of SciPy"
7+
version = "1.15.1.0.dev0"
8+
description = "Type annotations for SciPy"
99
readme = "README.md"
1010
authors = [
1111
{name = "Joren Hammudoglu", email = "[email protected]"},
@@ -35,7 +35,7 @@ dependencies = [
3535
[dependency-groups]
3636
extras = ["scipy-stubs[scipy]"]
3737
ci = ["packaging>=24.2"]
38-
codegen = ["libcst>=1.5.1,<2"]
38+
codegen = ["libcst>=1.6.0,<2"]
3939
mdformat = [
4040
"mdformat>=0.7.21",
4141
"mdformat-gfm>=0.4.1",
@@ -44,7 +44,7 @@ mdformat = [
4444
lint = [
4545
{include-group = "extras"},
4646
{include-group = "mdformat"},
47-
"ruff>=0.9.0",
47+
"ruff>=0.9.1",
4848
"sp-repo-review[cli]>=2024.8.19",
4949
]
5050
typecheck = [
@@ -57,13 +57,13 @@ typecheck = [
5757
dev = [
5858
{include-group = "lint"},
5959
{include-group = "typecheck"},
60-
"poethepoet>=0.32.0,<1",
60+
"poethepoet>=0.32.1,<1",
6161
"pre-commit>=4.0.1,<5",
6262
"pre-commit-uv>=4.1.4,<5",
6363
]
6464

6565
[project.optional-dependencies]
66-
scipy = ["scipy>=1.15.0,<1.16"]
66+
scipy = ["scipy>=1.15.1,<1.16"]
6767

6868
[project.urls]
6969
Repository = "https://github.com/jorenham/scipy-stubs/"

‎scipy-stubs/version.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
from typing import Final as _Final, Literal as _Literal
1+
from typing import Final as _Final
22
from typing_extensions import LiteralString as _LiteralString
33

44
version: _Final[_LiteralString] = ...
55
full_version: _Final[_LiteralString] = ...
6-
short_version: _Final[_Literal["1.15.0rc2", "1.15.0", "1.15.1"]] = ...
6+
short_version: _Final = "1.15.1"
77
git_revision: _Final[_LiteralString] = ...
88
release: _Final[bool] = ...

0 commit comments

Comments
 (0)