summaryrefslogtreecommitdiff
path: root/numpy/typing/tests/data/reveal
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #22786 from asmeurer/linalg-namedtuplesHEADmainCharles Harris2023-05-171-15/+15
|\ | | | | ENH: Add namedtuple return types to linalg functions that return tuples
| * TYP: Update type annotations for the new linalg named tuplesBas van Beek2023-05-171-15/+15
| |
* | TYP: Relax the `genfromtxt` return dtype when the dtype is unspecifiedBas van Beek2023-05-161-5/+5
| |
* | Merge branch 'main' into deprecate-find-common-typeCharles Harris2023-05-136-19/+11
|\ \
| * | TYP: Re-export the `np.dtypes` namespaceBas van Beek2023-05-081-0/+1
| | | | | | | | | | | | xref https://github.com/numpy/numpy/pull/23358
| * | TYP: Add the `np.exceptions` namespace and add `DTypePromotionError`Bas van Beek2023-05-081-0/+1
| | | | | | | | | | | | | | | | | | Xref https://github.com/numpy/numpy/pull/22644 and https://github.com/numpy/numpy/pull/22707 Update modules.pyi
| * | TYP: Let `np.einsum` accept `object` dtypesBas van Beek2023-05-081-1/+4
| | | | | | | | | | | | xref https://github.com/numpy/numpy/pull/18053
| * | MAINT: cleanup unused Python3.8-only code and referencesClément Robert2023-03-141-4/+2
| | |
| * | MAINT: Remove all nose testing support.Charles Harris2023-01-191-2/+0
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NumPy switched to using pytest in 2018 and nose has been unmaintained for many years. We have kept NumPy's nose support to avoid breaking downstream projects who might have been using it and not yet switched to pytest or some other testing framework. With the arrival of Python 3.12, unpatched nose will raise an error. It it time to move on. Decorators removed - raises - slow - setastest - skipif - knownfailif - deprecated - parametrize - _needs_refcount These are not to be confused with pytest versions with similar names, e.g., pytest.mark.slow, pytest.mark.skipif, pytest.mark.parametrize. Functions removed - Tester - import_nose - run_module_suite
| * TYP: Remove newly deprecated scalar type aliasesSebastian Berg2022-11-171-8/+0
| |
| * TYP,DEP: Remove `msort` annotationsBvB932022-11-141-4/+0
| | | | | | | | Xref https://github.com/numpy/numpy/pull/22456
| * TYP,ENH: Improve the `dtype`-overload of `stack`, `hstack` and `vstack`BvB932022-11-141-0/+3
| | | | | | | | Xref https://github.com/numpy/numpy/pull/21627
* | DEP,TYP: Remove `find_common_type` typing stubs and testsSebastian Berg2022-11-071-2/+0
|/
* Merge pull request #22360 from BvB93/mypyMatti Picus2022-10-022-2/+2
|\ | | | | TST,TYP: Bump mypy to 0.981
| * TST,TYP: Bump mypy to 0.981BvB932022-09-302-2/+2
| |
* | ENH,TYP: Add special casing for `ndarray`-based indexingBvB932022-09-301-2/+2
|/
* TYP: Import into random moduleKevin Sheppard2022-08-111-2/+2
|
* MAINT: Update typing informationKevin Sheppard2022-08-111-0/+3
|
* Merge pull request #21984 from BvB93/comparisonMatti Picus2022-07-171-0/+9
|\ | | | | MAINT,TYP: Add object-overloads for the `np.generic` rich comparisons
| * MAINT,TYP: Add object-overloads for the `np.generic` rich comparisonsBas van Beek2022-07-141-0/+9
| |
* | TYP,MAINT: Allow `einsum` subscripts to be passed via integer array-likesBas van Beek2022-07-141-0/+3
|/
* MAINT, TYP: Fix `np.angle` dtype-overloadsBas van Beek2022-07-121-3/+4
|
* TYP: Add basic `np.number` overloads for ndarray dundersBas van Beek2022-05-141-1/+4
|
* TYP: Let `ndarray` fancy indexing always return an `ndarray`Bas van Beek2022-04-151-0/+2
|
* MAINT: Split `numpy.typing` into a public and private componentBas van Beek2022-03-185-7/+10
| | | | i.e. `numpy.typing` and `numpy._typing`
* Merge pull request #21180 from BvB93/mypyCharles Harris2022-03-1312-62/+62
|\ | | | | TST: Bump mypy from 0.931 to 0.940
| * TST: Adapt to the mypy 0.940 `iter` changesBas van Beek2022-03-113-6/+6
| | | | | | | | xref https://github.com/python/typeshed/pull/6035
| * TST: Adapt to the mypy 0.940 changes in tuple representationBas van Beek2022-03-1112-58/+58
| |
* | MAINT: Relax the `obj` type in `__array_finalize__`Bas van Beek2022-02-233-0/+6
| |
* | MAINT: Remove a leftover `__array_finalize__` property decoratorBas van Beek2022-02-231-0/+4
|/
* TYP,TST: Add tests for known mypy-related false-positivesBas van Beek2022-02-211-0/+10
| | | | These all concern known false positives due to known mypy bugs. If one of these tests break, than that would generally be indicative of a upstream bug fix
* TYP,MAINT: Explicitly allow sequences of array-likes in `np.concatenate`Bas van Beek2022-02-211-0/+5
|
* TYP: Add dtype-typing support to `fromnumeric` part 3Bas van Beek2022-02-141-49/+59
|
* TST: Add more typing tests for `np.core.fromnumeric`Bas van Beek2022-02-091-33/+53
|
* TST,MAINT: Improve a number of variable namesBas van Beek2022-02-091-227/+226
|
* Merge pull request #20902 from BvB93/fromnumericCharles Harris2022-01-271-61/+65
|\ | | | | TYP,ENH: Add dtype-typing support to `np.core.fromnumeric` (part 1)
| * TYP,ENH: Add dtype-typing support to `fromnumeric` (part 1)Bas van Beek2022-01-261-61/+65
| |
* | MAINT: Add annotations for `flatiter.__setitem__`Bas van Beek2022-01-271-0/+4
| |
* | MAINT: Allow `flatiter.__getitem__` to accept 1-tuplesBas van Beek2022-01-271-0/+2
|/
* Merge pull request #20887 from BvB93/aliasesCharles Harris2022-01-241-1/+1
|\ | | | | TYP,MAINT: Add aliases for commonly used unions
| * TST: Fix failing typing testsBas van Beek2022-01-241-1/+1
| |
* | Merge pull request #20885 from BvB93/param_specCharles Harris2022-01-241-0/+4
|\ \ | |/ |/| TYP,ENH: Improve typing with the help of `ParamSpec`
| * ENH: Improve typing with the help of `ParamSpec`Bas van Beek2022-01-241-0/+4
| |
* | MAINT: Relax the return-type of `np.vectorize`Bas van Beek2022-01-191-1/+1
|/
* ENH: Type the `like` parameter via a `__array_function__` protocolBas van Beek2022-01-111-0/+1
|
* MAINT: removed duplicate 'int' type in ScalarTypeGaëtan de Menten2022-01-101-3/+3
|
* TYP: Allow time manipulation functions to accept `data` and `timedelta` objectsBas van Beek2022-01-061-0/+12
|
* TYP,MAINT: Allow `ndindex` to accept integer tuplesBas van Beek2022-01-021-0/+2
|
* STY: Use subscriptable `collections.abc` types over the generic aliases in …Bas van Beek2021-12-234-4/+7
|
* STY: Use subscriptable `builtins` types over the generic aliases in `typing`Bas van Beek2021-12-2318-74/+71
|