Skip to content

Commit 828de95

Browse files
authored
🚚 change jorenham/scipy-stubs refs to scipy/scipy-stubs (#446)
2 parents 9f24abd + afa1e04 commit 828de95

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

‎CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,5 +145,5 @@ titles. For VSCode and VSCodium users, it is recommended to use the
145145
[`gitmoji-vscode` extension](https://github.com/seatonjiang/gitmoji-vscode) for this.
146146

147147
[coc]: https://docs.scipy.org/doc/scipy/dev/conduct/code_of_conduct.html
148-
[license]: https://github.com/jorenham/scipy-stubs/blob/master/LICENSE
149-
[tests]: https://github.com/jorenham/scipy-stubs/tree/master/tests
148+
[license]: https://github.com/scipy/scipy-stubs/blob/master/LICENSE
149+
[tests]: https://github.com/scipy/scipy-stubs/tree/master/tests

‎README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,24 @@
1717
src="https://anaconda.org/conda-forge/scipy-stubs/badges/version.svg"
1818
/>
1919
</a>
20-
<a href="https://github.com/jorenham/scipy-stubs">
20+
<a href="https://github.com/scipy/scipy-stubs">
2121
<img
2222
alt="scipy-stubs - Python Versions"
2323
src="https://img.shields.io/pypi/pyversions/scipy-stubs?style=flat"
2424
/>
2525
</a>
26-
<a href="https://github.com/jorenham/scipy-stubs">
26+
<a href="https://github.com/scipy/scipy-stubs">
2727
<img
2828
alt="scipy-stubs - license"
29-
src="https://img.shields.io/github/license/jorenham/scipy-stubs?style=flat"
29+
src="https://img.shields.io/github/license/scipy/scipy-stubs?style=flat"
3030
/>
3131
</a>
3232
</p>
3333
<p align="center">
34-
<a href="https://github.com/jorenham/scipy-stubs/actions?query=workflow%3ACI">
34+
<a href="https://github.com/scipy/scipy-stubs/actions?query=workflow%3ACI">
3535
<img
3636
alt="scipy-stubs - CI"
37-
src="https://github.com/jorenham/scipy-stubs/workflows/CI/badge.svg"
37+
src="https://github.com/scipy/scipy-stubs/workflows/CI/badge.svg"
3838
/>
3939
</a>
4040
<a href="https://github.com/pre-commit/pre-commit">
@@ -95,7 +95,7 @@ ______________________________________________________________________
9595

9696
## Installation
9797

98-
The source code is currently hosted on GitHub at [github.com/jorenham/scipy-stubs](https://github.com/jorenham/scipy-stubs/).
98+
The source code is currently hosted on GitHub at [github.com/scipy/scipy-stubs](https://github.com/scipy/scipy-stubs/).
9999

100100
Binary distributions are available at the [Python Package Index (PyPI)](https://pypi.org/project/scipy-stubs/) and on
101101
[conda-forge](https://anaconda.org/conda-forge/scipy-stubs).
@@ -196,8 +196,8 @@ help a lot if you could open an issue or a PR for it.
196196
There are many ways that you can help improve `scipy-stubs`, for example
197197

198198
- reporting issues, bugs, or other unexpected outcomes
199-
- improving the `.pyi` stubs (see [CONTRIBUTING.md](https://github.com/jorenham/scipy-stubs/blob/master/CONTRIBUTING.md))
200-
- type-testing (see the `README.md` in [`scipy-stubs/tests`](https://github.com/jorenham/scipy-stubs/tree/master/tests) for the
199+
- improving the `.pyi` stubs (see [CONTRIBUTING.md](https://github.com/scipy/scipy-stubs/blob/master/CONTRIBUTING.md))
200+
- type-testing (see the `README.md` in [`scipy-stubs/tests`](https://github.com/scipy/scipy-stubs/tree/master/tests) for the
201201
specifics)
202202
- write new documentation (usage examples, guides, tips & tricks, FAQ, etc.), or e.g. improve this `README.md`
203203
- help spread the word on `scipy-stubs`, so that more can benefit from using it

‎pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ dependencies = ["optype>=0.9.0"]
4040

4141
[project.urls]
4242
Homepage = "https://scipy.org/"
43-
Repository = "https://github.com/jorenham/scipy-stubs/"
44-
Issues = "https://github.com/jorenham/scipy-stubs/issues"
45-
Changelog = "https://github.com/jorenham/scipy-stubs/releases"
43+
Repository = "https://github.com/scipy/scipy-stubs/"
44+
Issues = "https://github.com/scipy/scipy-stubs/issues"
45+
Changelog = "https://github.com/scipy/scipy-stubs/releases"
4646

4747

4848
[dependency-groups]

‎scipy-stubs/fft/_realtransforms.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ _FloatND: TypeAlias = onp.ArrayND[np.float32 | np.float64 | np.longdouble]
1313
###
1414

1515
# TODO: Add overloads for specific return dtypes, as discussed in:
16-
# https://github.com/jorenham/scipy-stubs/pull/118#discussion_r1807957439
16+
# https://github.com/scipy/scipy-stubs/pull/118#discussion_r1807957439
1717

1818
def dctn(
1919
x: onp.ToComplexND,

‎scipy-stubs/linalg/_decomp.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ _SelectV: TypeAlias = Literal["v", "value", 1]
3838
_SelectI: TypeAlias = Literal["i", "index", 2]
3939

4040
# NOTE: `_check_select()` requires the `select_range` array-like to be of `int{16,32,64}` when `select: _SelectIndex`
41-
# https://github.com/jorenham/scipy-stubs/issues/154
41+
# https://github.com/scipy/scipy-stubs/issues/154
4242
# NOTE: This `select_range` parameter type must be of shape `(2,)` and in nondescending order
4343
_SelectRange: TypeAlias = Sequence[float | _Integer | _Floating]
4444
_SelectRangeI: TypeAlias = Sequence[int | np.int16 | np.int32 | np.int64] # no bool, int8 or unsigned ints

0 commit comments

Comments
 (0)