Skip to content

Commit b656ca5

Browse files
committed
* Upgrade presets for DNNL 3.7.3, CPython 3.13.3, NumPy 2.2.5, LLVM 20.1.3, libffi 3.4.8, ONNX Runtime 1.21.1
1 parent 754110d commit b656ca5

File tree

51 files changed

+93
-93
lines changed

Some content is hidden

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

51 files changed

+93
-93
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Allow setting "org.bytedeco.openblas.load" system property to "none" ([issue #1203](https://github.com/bytedeco/javacpp-presets/issues/1203))
55
* Fix presets for the CUPTI module of CUDA on Windows ([pull #1576](https://github.com/bytedeco/javacpp-presets/pull/1576))
66
* Introduce `macosx-arm64` builds for ARPACK-NG, CMINPACK, FFTW, GSL, TensorFlow Lite, ONNX, ONNX Runtime ([issue #1069](https://github.com/bytedeco/javacpp-presets/issues/1069))
7-
* Upgrade presets for OpenCV 4.11.0, FFmpeg 7.1.1, DNNL 3.7.1, OpenBLAS 0.3.29, CPython 3.13.2, NumPy 2.2.3, SciPy 1.15.2, LLVM 20.1.0, libffi 3.4.7, PyTorch 2.6.0, TensorFlow Lite 2.19.0, ONNX Runtime 1.21.0, and their dependencies
7+
* Upgrade presets for OpenCV 4.11.0, FFmpeg 7.1.1, DNNL 3.7.3, OpenBLAS 0.3.29, CPython 3.13.3, NumPy 2.2.5, SciPy 1.15.2, LLVM 20.1.3, libffi 3.4.8, PyTorch 2.6.0, TensorFlow Lite 2.19.0, ONNX Runtime 1.21.1, and their dependencies
88

99
### November 16, 2024 version 1.5.11
1010
* Enable distributed package using Gloo in presets for PyTorch ([pull #1510](https://github.com/bytedeco/javacpp-presets/pull/1510))

cpython/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Introduction
1414
------------
1515
This directory contains the JavaCPP Presets module for:
1616

17-
* CPython 3.13.2 https://www.python.org/
17+
* CPython 3.13.3 https://www.python.org/
1818

1919
Please refer to the parent README.md file for more detailed information about the JavaCPP Presets.
2020

@@ -54,7 +54,7 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
5454
<dependency>
5555
<groupId>org.bytedeco</groupId>
5656
<artifactId>cpython-platform</artifactId>
57-
<version>3.13.2-1.5.12-SNAPSHOT</version>
57+
<version>3.13.3-1.5.12-SNAPSHOT</version>
5858
</dependency>
5959
</dependencies>
6060
<build>

cpython/cppbuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if [[ -z "$PLATFORM" ]]; then
88
fi
99

1010
OPENSSL=openssl-3.4.1
11-
CPYTHON_VERSION=3.13.2
11+
CPYTHON_VERSION=3.13.3
1212
download https://www.openssl.org/source/$OPENSSL.tar.gz $OPENSSL.tar.gz
1313
download https://www.python.org/ftp/python/$CPYTHON_VERSION/Python-$CPYTHON_VERSION.tgz Python-$CPYTHON_VERSION.tgz
1414

cpython/platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>cpython-platform</artifactId>
15-
<version>3.13.2-${project.parent.version}</version>
15+
<version>3.13.3-${project.parent.version}</version>
1616
<name>JavaCPP Presets Platform for CPython</name>
1717

1818
<properties>

cpython/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>org.bytedeco</groupId>
1313
<artifactId>cpython</artifactId>
14-
<version>3.13.2-${project.parent.version}</version>
14+
<version>3.13.3-${project.parent.version}</version>
1515
<name>JavaCPP Presets for CPython</name>
1616

1717
<dependencies>

cpython/samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<dependency>
1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>cpython-platform</artifactId>
15-
<version>3.13.2-1.5.12-SNAPSHOT</version>
15+
<version>3.13.3-1.5.12-SNAPSHOT</version>
1616
</dependency>
1717
</dependencies>
1818
<build>

cpython/src/gen/java/org/bytedeco/cpython/PyConfig.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@ public class PyConfig extends Pointer {
7979
public native int use_frozen_modules(); public native PyConfig use_frozen_modules(int setter);
8080
public native int safe_path(); public native PyConfig safe_path(int setter);
8181
public native int int_max_str_digits(); public native PyConfig int_max_str_digits(int setter);
82-
// #ifdef __APPLE__
83-
// #endif
8482

8583
public native int cpu_count(); public native PyConfig cpu_count(int setter);
8684
// #ifdef Py_GIL_DISABLED

cpython/src/gen/java/org/bytedeco/cpython/_PyCoLineInstrumentationData.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212

1313

1414
/* Ancillary data structure used for instrumentation.
15-
Line instrumentation creates an array of
16-
these. One entry per code unit.*/
15+
Line instrumentation creates this with sufficient
16+
space for one entry per code unit. The total size
17+
of the data will be `bytes_per_entry * Py_SIZE(code)` */
1718
@Properties(inherit = org.bytedeco.cpython.presets.python.class)
1819
public class _PyCoLineInstrumentationData extends Pointer {
1920
static { Loader.load(); }
@@ -32,6 +33,7 @@ public class _PyCoLineInstrumentationData extends Pointer {
3233
return new _PyCoLineInstrumentationData((Pointer)this).offsetAddress(i);
3334
}
3435

35-
public native @Cast("uint8_t") byte original_opcode(); public native _PyCoLineInstrumentationData original_opcode(byte setter);
36-
public native byte line_delta(); public native _PyCoLineInstrumentationData line_delta(byte setter);
36+
public native @Cast("uint8_t") byte bytes_per_entry(); public native _PyCoLineInstrumentationData bytes_per_entry(byte setter);
37+
public native @Cast("uint8_t") byte data(int i); public native _PyCoLineInstrumentationData data(int i, byte setter);
38+
@MemberGetter public native @Cast("uint8_t*") BytePointer data();
3739
}

cpython/src/gen/java/org/bytedeco/cpython/global/python.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,12 +174,12 @@ There is also (independent) API version information in modsupport.h.
174174
/*--start constants--*/
175175
public static final int PY_MAJOR_VERSION = 3;
176176
public static final int PY_MINOR_VERSION = 13;
177-
public static final int PY_MICRO_VERSION = 2;
177+
public static final int PY_MICRO_VERSION = 3;
178178
public static final int PY_RELEASE_LEVEL = PY_RELEASE_LEVEL_FINAL;
179179
public static final int PY_RELEASE_SERIAL = 0;
180180

181181
/* Version as a string */
182-
public static final String PY_VERSION = "3.13.2";
182+
public static final String PY_VERSION = "3.13.3";
183183
/*--end constants--*/
184184

185185
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

dnnl/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Introduction
99
------------
1010
This directory contains the JavaCPP Presets module for:
1111

12-
* DNNL 3.7.1 https://01.org/dnnl
12+
* DNNL 3.7.3 https://01.org/dnnl
1313

1414
Please refer to the parent README.md file for more detailed information about the JavaCPP Presets.
1515

@@ -25,7 +25,7 @@ Sample Usage
2525
------------
2626
Here is a simple example of DNNL ported to Java from this C++ source file:
2727

28-
* https://github.com/oneapi-src/oneDNN/blob/v3.7.1/examples/cnn_inference_int8.cpp
28+
* https://github.com/oneapi-src/oneDNN/blob/v3.7.3/examples/cnn_inference_int8.cpp
2929

3030
We can use [Maven 3](http://maven.apache.org/) to download and install automatically all the class files as well as the native binaries. To run this sample code, after creating the `pom.xml` and `CpuCnnInferenceInt8.java` source files below, simply execute on the command line:
3131
```bash
@@ -46,7 +46,7 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
4646
<dependency>
4747
<groupId>org.bytedeco</groupId>
4848
<artifactId>dnnl-platform</artifactId>
49-
<version>3.7.1-1.5.12-SNAPSHOT</version>
49+
<version>3.7.3-1.5.12-SNAPSHOT</version>
5050
</dependency>
5151
</dependencies>
5252
<build>

dnnl/cppbuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export DNNL_CPU_RUNTIME="OMP" # or TBB
1111
export DNNL_GPU_RUNTIME="OCL"
1212

1313
TBB_VERSION=2020.3
14-
MKLDNN_VERSION=3.7.1
14+
MKLDNN_VERSION=3.7.3
1515
download https://github.com/oneapi-src/oneTBB/archive/v$TBB_VERSION.tar.gz oneTBB-$TBB_VERSION.tar.bz2
1616
download https://github.com/oneapi-src/oneDNN/archive/v$MKLDNN_VERSION.tar.gz oneDNN-$MKLDNN_VERSION.tar.bz2
1717

dnnl/platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>dnnl-platform</artifactId>
15-
<version>3.7.1-${project.parent.version}</version>
15+
<version>3.7.3-${project.parent.version}</version>
1616
<name>JavaCPP Presets Platform for DNNL</name>
1717

1818
<properties>

dnnl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>org.bytedeco</groupId>
1313
<artifactId>dnnl</artifactId>
14-
<version>3.7.1-${project.parent.version}</version>
14+
<version>3.7.3-${project.parent.version}</version>
1515
<name>JavaCPP Presets for DNNL</name>
1616

1717
<dependencies>

dnnl/samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<dependency>
1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>dnnl-platform</artifactId>
15-
<version>3.7.1-1.5.12-SNAPSHOT</version>
15+
<version>3.7.3-1.5.12-SNAPSHOT</version>
1616
</dependency>
1717
</dependencies>
1818
<build>

dnnl/src/gen/java/org/bytedeco/dnnl/global/dnnl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3728,7 +3728,7 @@ public class dnnl extends org.bytedeco.dnnl.presets.dnnl {
37283728
public static final int DNNL_VERSION_MINOR = 7;
37293729

37303730
/** Patch version */
3731-
public static final int DNNL_VERSION_PATCH = 1;
3731+
public static final int DNNL_VERSION_PATCH = 3;
37323732

37333733
// clang-format on
37343734

ffmpeg/cppbuild.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ OPENSSL=openssl-3.4.1
3737
OPENH264_VERSION=2.6.0
3838
X264=x264-stable
3939
X265=3.4
40-
VPX_VERSION=1.15.0
41-
ALSA_VERSION=1.2.13
40+
VPX_VERSION=1.15.1
41+
ALSA_VERSION=1.2.14
4242
FREETYPE_VERSION=2.13.3
4343
MFX_VERSION=1.35.1
4444
NVCODEC_VERSION=13.0.19.0

leptonica/cppbuild.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ NASM_VERSION=2.14
1111
ZLIB=zlib-1.3.1
1212
GIFLIB=giflib-5.2.2
1313
LIBJPEG=libjpeg-turbo-3.0.1
14-
LIBPNG=libpng-1.6.44 # warning: libpng16 doesn't work on CentOS 6 for some reason
14+
LIBPNG=libpng-1.6.47 # warning: libpng16 doesn't work on CentOS 6 for some reason
1515
LIBTIFF=tiff-4.7.0
16-
LIBWEBP=libwebp-1.4.0
17-
OPENJPEG_VERSION=2.5.2
16+
LIBWEBP=libwebp-1.5.0
17+
OPENJPEG_VERSION=2.5.3
1818
LEPTONICA_VERSION=1.85.0
1919
download https://download.videolan.org/contrib/nasm/nasm-$NASM_VERSION.tar.gz nasm-$NASM_VERSION.tar.gz
2020
download http://zlib.net/$ZLIB.tar.gz $ZLIB.tar.gz
2121
download http://downloads.sourceforge.net/project/giflib/$GIFLIB.tar.gz $GIFLIB.tar.gz
2222
download http://downloads.sourceforge.net/project/libjpeg-turbo/3.0.1/$LIBJPEG.tar.gz $LIBJPEG.tar.gz
23-
download https://sourceforge.net/projects/libpng/files/libpng16/1.6.44/$LIBPNG.tar.gz $LIBPNG.tar.gz
23+
download https://sourceforge.net/projects/libpng/files/libpng16/1.6.47/$LIBPNG.tar.gz $LIBPNG.tar.gz
2424
download http://download.osgeo.org/libtiff/$LIBTIFF.tar.gz $LIBTIFF.tar.gz
2525
download http://downloads.webmproject.org/releases/webp/$LIBWEBP.tar.gz $LIBWEBP.tar.gz
2626
download https://github.com/uclouvain/openjpeg/archive/refs/tags/v$OPENJPEG_VERSION.tar.gz openjpeg-$OPENJPEG_VERSION.tar.gz

libffi/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Introduction
99
------------
1010
This directory contains the JavaCPP Presets module for:
1111

12-
* libffi 3.4.7 https://sourceware.org/libffi/
12+
* libffi 3.4.8 https://sourceware.org/libffi/
1313

1414
Please refer to the parent README.md file for more detailed information about the JavaCPP Presets.
1515

@@ -46,7 +46,7 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
4646
<dependency>
4747
<groupId>org.bytedeco</groupId>
4848
<artifactId>libffi-platform</artifactId>
49-
<version>3.4.7-1.5.12-SNAPSHOT</version>
49+
<version>3.4.8-1.5.12-SNAPSHOT</version>
5050
</dependency>
5151
</dependencies>
5252
<build>

libffi/cppbuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [[ -z "$PLATFORM" ]]; then
77
exit
88
fi
99

10-
LIBFFI_VERSION=3.4.7
10+
LIBFFI_VERSION=3.4.8
1111
download https://github.com/libffi/libffi/releases/download/v$LIBFFI_VERSION/libffi-$LIBFFI_VERSION.tar.gz libffi-$LIBFFI_VERSION.tar.gz
1212

1313
mkdir -p $PLATFORM

libffi/platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>libffi-platform</artifactId>
15-
<version>3.4.7-${project.parent.version}</version>
15+
<version>3.4.8-${project.parent.version}</version>
1616
<name>JavaCPP Presets Platform for libffi</name>
1717

1818
<properties>

libffi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>org.bytedeco</groupId>
1313
<artifactId>libffi</artifactId>
14-
<version>3.4.7-${project.parent.version}</version>
14+
<version>3.4.8-${project.parent.version}</version>
1515
<name>JavaCPP Presets for libffi</name>
1616

1717
<dependencies>

libffi/samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<dependency>
1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>libffi-platform</artifactId>
15-
<version>3.4.7-1.5.12-SNAPSHOT</version>
15+
<version>3.4.8-1.5.12-SNAPSHOT</version>
1616
</dependency>
1717
</dependencies>
1818
<build>

libffi/src/gen/java/org/bytedeco/libffi/global/ffi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ a copy of this software and associated documentation files (the
127127
// Parsed from ffi.h
128128

129129
/* -----------------------------------------------------------------*-C-*-
130-
libffi 3.4.7
130+
libffi 3.4.8
131131
- Copyright (c) 2011, 2014, 2019, 2021, 2022, 2024 Anthony Green
132132
- Copyright (c) 1996-2003, 2007, 2008 Red Hat, Inc.
133133

llvm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Introduction
99
------------
1010
This directory contains the JavaCPP Presets module for:
1111

12-
* LLVM 20.1.0 http://llvm.org/
12+
* LLVM 20.1.3 http://llvm.org/
1313

1414
Please refer to the parent README.md file for more detailed information about the JavaCPP Presets.
1515

@@ -50,7 +50,7 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
5050
<dependency>
5151
<groupId>org.bytedeco</groupId>
5252
<artifactId>llvm-platform</artifactId>
53-
<version>20.1.0-1.5.12-SNAPSHOT</version>
53+
<version>20.1.3-1.5.12-SNAPSHOT</version>
5454
</dependency>
5555
</dependencies>
5656
<build>

llvm/cppbuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [[ -z "$PLATFORM" ]]; then
77
exit
88
fi
99

10-
LLVM_VERSION=20.1.0
10+
LLVM_VERSION=20.1.3
1111
download https://github.com/llvm/llvm-project/releases/download/llvmorg-$LLVM_VERSION/llvm-project-$LLVM_VERSION.src.tar.xz llvm-project-$LLVM_VERSION.src.tar.xz
1212

1313
mkdir -p $PLATFORM

llvm/platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>llvm-platform</artifactId>
15-
<version>20.1.0-${project.parent.version}</version>
15+
<version>20.1.3-${project.parent.version}</version>
1616
<name>JavaCPP Presets Platform for LLVM</name>
1717

1818
<properties>

llvm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>org.bytedeco</groupId>
1313
<artifactId>llvm</artifactId>
14-
<version>20.1.0-${project.parent.version}</version>
14+
<version>20.1.3-${project.parent.version}</version>
1515
<name>JavaCPP Presets for LLVM</name>
1616

1717
<dependencies>

llvm/samples/clang/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<dependency>
1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>llvm-platform</artifactId>
15-
<version>20.1.0-1.5.12-SNAPSHOT</version>
15+
<version>20.1.3-1.5.12-SNAPSHOT</version>
1616
</dependency>
1717
</dependencies>
1818
<build>

llvm/samples/llvm/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
<dependency>
1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>llvm-platform</artifactId>
15-
<version>20.1.0-1.5.12-SNAPSHOT</version>
15+
<version>20.1.3-1.5.12-SNAPSHOT</version>
1616
</dependency>
1717
<dependency>
1818
<groupId>org.bytedeco</groupId>
1919
<artifactId>libffi-platform</artifactId>
20-
<version>3.4.7-1.5.12-SNAPSHOT</version>
20+
<version>3.4.8-1.5.12-SNAPSHOT</version>
2121
</dependency>
2222
</dependencies>
2323
<repositories>

llvm/samples/polly/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
<dependency>
1414
<groupId>org.bytedeco</groupId>
1515
<artifactId>llvm-platform</artifactId>
16-
<version>20.1.0-1.5.12-SNAPSHOT</version>
16+
<version>20.1.3-1.5.12-SNAPSHOT</version>
1717
</dependency>
1818
<dependency>
1919
<groupId>org.bytedeco</groupId>
2020
<artifactId>libffi-platform</artifactId>
21-
<version>3.4.7-1.5.12-SNAPSHOT</version>
21+
<version>3.4.8-1.5.12-SNAPSHOT</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>org.bytedeco</groupId>

numpy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Introduction
99
------------
1010
This directory contains the JavaCPP Presets module for:
1111

12-
* NumPy 2.2.3 http://www.numpy.org/
12+
* NumPy 2.2.5 http://www.numpy.org/
1313

1414
Please refer to the parent README.md file for more detailed information about the JavaCPP Presets.
1515

@@ -48,7 +48,7 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
4848
<dependency>
4949
<groupId>org.bytedeco</groupId>
5050
<artifactId>numpy-platform</artifactId>
51-
<version>2.2.3-1.5.12-SNAPSHOT</version>
51+
<version>2.2.5-1.5.12-SNAPSHOT</version>
5252
</dependency>
5353

5454
<!-- Additional dependencies to use bundled full version of MKL -->

numpy/cppbuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [[ -z "$PLATFORM" ]]; then
77
exit
88
fi
99

10-
NUMPY_VERSION=2.2.3
10+
NUMPY_VERSION=2.2.5
1111
download https://github.com/numpy/numpy/releases/download/v$NUMPY_VERSION/numpy-$NUMPY_VERSION.tar.gz numpy-$NUMPY_VERSION.tar.gz
1212

1313
mkdir -p $PLATFORM

0 commit comments

Comments
 (0)