mirror of
https://github.com/ROCm/jax.git
synced 2025-04-16 03:46:06 +00:00
feat: officially support Python 3.10
This commit is contained in:
parent
78fafc5832
commit
a11f15e3ec
17
.github/workflows/ci-build.yaml
vendored
17
.github/workflows/ci-build.yaml
vendored
@ -1,5 +1,11 @@
|
||||
name: CI
|
||||
|
||||
# We test all supported Python versions as follows:
|
||||
# - 3.7 : Documentation build
|
||||
# - 3.8 : Part of Matrix
|
||||
# - 3.9 : Part of Matrix with NumPy dispatch
|
||||
# - 3.10 : Part of Matrix
|
||||
|
||||
on:
|
||||
# Trigger the workflow on push or pull request,
|
||||
# but only for the main branch
|
||||
@ -35,20 +41,27 @@ jobs:
|
||||
matrix:
|
||||
include:
|
||||
- name-prefix: "with 3.8"
|
||||
python-version: 3.8
|
||||
python-version: "3.8"
|
||||
os: ubuntu-latest
|
||||
enable-x64: 0
|
||||
package-overrides: "none"
|
||||
num_generated_cases: 1
|
||||
use-latest-jaxlib: false
|
||||
- name-prefix: "with numpy-dispatch"
|
||||
python-version: 3.9
|
||||
python-version: "3.9"
|
||||
os: ubuntu-latest
|
||||
enable-x64: 1
|
||||
# Test experimental NumPy dispatch
|
||||
package-overrides: "git+https://github.com/seberg/numpy-dispatch.git"
|
||||
num_generated_cases: 1
|
||||
use-latest-jaxlib: false
|
||||
- name-prefix: "with 3.10"
|
||||
python-version: "3.10"
|
||||
os: ubuntu-latest
|
||||
enable-x64: 0
|
||||
package-overrides: "none"
|
||||
num_generated_cases: 1
|
||||
use-latest-jaxlib: false
|
||||
steps:
|
||||
- name: Cancel previous
|
||||
uses: styfle/cancel-workflow-action@0.9.1
|
||||
|
@ -36,6 +36,12 @@ setup(
|
||||
install_requires=['scipy', 'numpy>=1.19', 'absl-py', 'flatbuffers >= 1.12, < 3.0'],
|
||||
url='https://github.com/google/jax',
|
||||
license='Apache-2.0',
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
],
|
||||
package_data={
|
||||
'jaxlib': [
|
||||
'*.so',
|
||||
|
Loading…
x
Reference in New Issue
Block a user