Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitccab1af

Browse files
committed
Merge branch 'main' into creation-helper
2 parents0a5be10 +6bd3abf commitccab1af

File tree

233 files changed

+7809
-2012
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

233 files changed

+7809
-2012
lines changed

‎.github/workflows/cygwin.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
cd tools
6464
/usr/bin/python3.9 -m pytest --pyargs numpy -n2 -m "not slow"
6565
-name:Upload wheel if tests fail
66-
uses:actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392# v4.0.0
66+
uses:actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6# v4.2.0
6767
if:failure()
6868
with:
6969
name:numpy-cygwin-wheel

‎.github/workflows/dependency-review.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
-name:'Checkout Repository'
1818
uses:actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11# v4.1.1
1919
-name:'Dependency Review'
20-
uses:actions/dependency-review-action@01bc87099ba56df1e897b6874784491ea6309bc4#v3.1.4
20+
uses:actions/dependency-review-action@4901385134134e04cec5fbe5ddfe3b2c5bd5d976#v4.0.0

‎.github/workflows/emscripten.yml‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ jobs:
7373
source .venv-pyodide/bin/activate
7474
pip install dist/*.whl
7575
python -c "import sys; print(sys.platform)"
76+
# TODO: when re-enabled this workflow, install test deps differently
77+
# since ninja isn't installable with pyodide
7678
pip install -r test_requirements.txt
7779
-name:Test
7880
run:|

‎.github/workflows/linux.yml‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ jobs:
202202
-name:Install test dependencies
203203
run:|
204204
pip install -r test_requirements.txt
205-
pip install ninja
206205
-name:Run test suite
207206
run:|
208207
cd tools

‎.github/workflows/macos.yml‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ jobs:
130130

131131
-name:Build NumPy against Accelerate (ILP64)
132132
run:|
133-
spin build -- -Duse-ilp64=true -Dallow-noblas=false
133+
git clean -xdf
134+
spin build -- -Duse-ilp64=true -Ddisable-optimization=true -Dallow-noblas=false
134135
135136
-name:Test (fast tests)
136137
run:spin test -j2

‎.github/workflows/mypy.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
matrix:
4646
os_python:
47-
-[ubuntu-latest, '3.10']# switch to 3.12-dev after mypy is upgraded (see gh-23764)
47+
-[ubuntu-latest, '3.12']
4848
-[windows-2019, '3.11']
4949
-[macos-12, '3.9']
5050
steps:

‎.github/workflows/scorecards.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
# Upload the results as artifacts (optional). Commenting out will disable
4343
# uploads of run results in SARIF format to the repository Actions tab.
4444
-name:"Upload artifact"
45-
uses:actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392# v4.0.0
45+
uses:actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6# v4.2.0
4646
with:
4747
name:SARIF file
4848
path:results.sarif

‎.github/workflows/wheels.yml‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
CIBW_PRERELEASE_PYTHONS:True
122122
CIBW_BUILD:${{ matrix.python }}-${{ matrix.buildplat[1] }}
123123

124-
-uses:actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392# v4.0.0
124+
-uses:actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6# v4.2.0
125125
with:
126126
name:${{ matrix.python }}-${{ startsWith(matrix.buildplat[1], 'macosx') && 'macosx' || matrix.buildplat[1] }}
127127
path:./wheelhouse/*.whl
@@ -196,7 +196,6 @@ jobs:
196196
# TODO: Don't run test suite, and instead build wheels from sdist
197197
# Depends on pypa/cibuildwheel#1020
198198
python -m pip install dist/*.gz -Csetup-args=-Dallow-noblas=true
199-
pip install ninja
200199
pip install -r test_requirements.txt
201200
cd .. # Can't import numpy within numpy src directory
202201
python -c "import numpy, sys; print(numpy.__version__); sys.exit(numpy.test() is False)"
@@ -206,7 +205,7 @@ jobs:
206205
python -mpip install twine
207206
twine check dist/*
208207
209-
-uses:actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392# v4.0.0
208+
-uses:actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6# v4.2.0
210209
with:
211210
name:sdist
212211
path:./dist/*

‎.mailmap‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ Allan Haldane <allan.haldane@gmail.com> <ealloc@gmail.com>
8585
Al-Baraa El-Hag <a.elhag01@gmail.com> <48454648+a-elhag@users.noreply.github.com>
8686
Alok Singhal <gandalf013@gmail.com> Alok Singhal <alok@merfinllc.com>
8787
Alyssa Quek <alyssaquek@gmail.com>
88+
Andrea Bianchi<andrea_bianchi@outlook.com>
89+
Andrea Bianchi<andrea_bianchi@outlook.com> andrea-bia <andrea-bia@users.noreply.github.com>
8890
Ankit Dwivedi <adwivedi@microsoft.com>
8991
Ankit Dwivedi <adwivedi@microsoft.com> <ankit_dwivedi@outlook.com>
9092
Amir Sarabadani <ladsgroup@gmail.com>
@@ -301,6 +303,8 @@ Jerome Kelleher <jerome.kelleher@ed.ac.uk>
301303
Jessé Pires <jesserocha@alunos.utfpr.edu.br>
302304
Jessi J Zhao <35235453+jessijzhao@users.noreply.github.com>
303305
João Fontes Gonçalves <jfontesgoncalves@gmail.com>
306+
Johann Rohwer <j.m.rohwer@gmail.com>
307+
Johann Rohwer <j.m.rohwer@gmail.com> jmrohwer <jmrohwer@users.noreply.github.com>
304308
Johnathon Cusick <jonathan.cusick09@gmail.com>
305309
Jhong-Ken Chen (陳仲肯) <kenny.kuo.fs@gmail.com>
306310
Jhong-Ken Chen (陳仲肯) <kenny.kuo.fs@gmail.com> <37182101+kennychenfs@users.noreply.github.com>

‎.spin/cmds.py‎

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,12 @@ def _get_numpy_tools(filename):
3434

3535

3636
@click.command()
37-
@click.option(
38-
"-t","--token",
39-
help="GitHub access token",
37+
@click.argument(
38+
"token",
4039
required=True
4140
)
42-
@click.option(
43-
"--revision-range",
44-
help="<revision>..<revision>",
41+
@click.argument(
42+
"revision-range",
4543
required=True
4644
)
4745
@click.pass_context

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp