Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
def34fb
1
Parent(s):
864171c
Test on Python 3.7 again
Browse files- .github/workflows/CI.yml +3 -3
- .github/workflows/CI_Windows.yml +1 -1
- .github/workflows/CI_docker_large_nightly.yml +1 -1
- .github/workflows/CI_mac.yml +2 -2
- .github/workflows/docker_deploy.yml +2 -2
- Dockerfile +2 -2
- setup.py +1 -1
.github/workflows/CI.yml
CHANGED
@@ -29,8 +29,8 @@ jobs:
|
|
29 |
shell: bash
|
30 |
strategy:
|
31 |
matrix:
|
32 |
-
julia-version: ['1.
|
33 |
-
python-version: ['3.
|
34 |
os: [ubuntu-latest]
|
35 |
|
36 |
steps:
|
@@ -152,7 +152,7 @@ jobs:
|
|
152 |
shell: bash -l {0}
|
153 |
strategy:
|
154 |
matrix:
|
155 |
-
python-version: ['3.
|
156 |
|
157 |
steps:
|
158 |
- uses: actions/checkout@v3
|
|
|
29 |
shell: bash
|
30 |
strategy:
|
31 |
matrix:
|
32 |
+
julia-version: ['1.6', '1']
|
33 |
+
python-version: ['3.7', '3.11']
|
34 |
os: [ubuntu-latest]
|
35 |
|
36 |
steps:
|
|
|
152 |
shell: bash -l {0}
|
153 |
strategy:
|
154 |
matrix:
|
155 |
+
python-version: ['3.11']
|
156 |
|
157 |
steps:
|
158 |
- uses: actions/checkout@v3
|
.github/workflows/CI_Windows.yml
CHANGED
@@ -30,7 +30,7 @@ jobs:
|
|
30 |
strategy:
|
31 |
matrix:
|
32 |
julia-version: ['1.9']
|
33 |
-
python-version: ['3.
|
34 |
os: [windows-latest]
|
35 |
|
36 |
steps:
|
|
|
30 |
strategy:
|
31 |
matrix:
|
32 |
julia-version: ['1.9']
|
33 |
+
python-version: ['3.11']
|
34 |
os: [windows-latest]
|
35 |
|
36 |
steps:
|
.github/workflows/CI_docker_large_nightly.yml
CHANGED
@@ -18,7 +18,7 @@ jobs:
|
|
18 |
strategy:
|
19 |
fail-fast: false
|
20 |
matrix:
|
21 |
-
julia-version: ['1.6', '1
|
22 |
python-version: ['3.10']
|
23 |
os: [ubuntu-latest]
|
24 |
arch: ['linux/amd64', 'linux/arm64']
|
|
|
18 |
strategy:
|
19 |
fail-fast: false
|
20 |
matrix:
|
21 |
+
julia-version: ['1.6', '1']
|
22 |
python-version: ['3.10']
|
23 |
os: [ubuntu-latest]
|
24 |
arch: ['linux/amd64', 'linux/arm64']
|
.github/workflows/CI_mac.yml
CHANGED
@@ -29,8 +29,8 @@ jobs:
|
|
29 |
shell: bash
|
30 |
strategy:
|
31 |
matrix:
|
32 |
-
julia-version: ['1
|
33 |
-
python-version: ['3.
|
34 |
os: [macos-latest]
|
35 |
|
36 |
steps:
|
|
|
29 |
shell: bash
|
30 |
strategy:
|
31 |
matrix:
|
32 |
+
julia-version: ['1']
|
33 |
+
python-version: ['3.11']
|
34 |
os: [macos-latest]
|
35 |
|
36 |
steps:
|
.github/workflows/docker_deploy.yml
CHANGED
@@ -18,8 +18,8 @@ jobs:
|
|
18 |
matrix:
|
19 |
os: [ubuntu-latest]
|
20 |
arch: [linux/amd64]
|
21 |
-
python-version: [3.
|
22 |
-
julia-version: [1.
|
23 |
steps:
|
24 |
- name: Checkout
|
25 |
uses: actions/checkout@v3
|
|
|
18 |
matrix:
|
19 |
os: [ubuntu-latest]
|
20 |
arch: [linux/amd64]
|
21 |
+
python-version: [3.11.6]
|
22 |
+
julia-version: [1.9.4]
|
23 |
steps:
|
24 |
- name: Checkout
|
25 |
uses: actions/checkout@v3
|
Dockerfile
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
# This builds a dockerfile containing a working copy of PySR
|
2 |
# with all pre-requisites installed.
|
3 |
|
4 |
-
ARG JLVERSION=1.9.
|
5 |
-
ARG PYVERSION=3.
|
6 |
ARG BASE_IMAGE=bullseye
|
7 |
|
8 |
FROM julia:${JLVERSION}-${BASE_IMAGE} AS jl
|
|
|
1 |
# This builds a dockerfile containing a working copy of PySR
|
2 |
# with all pre-requisites installed.
|
3 |
|
4 |
+
ARG JLVERSION=1.9.4
|
5 |
+
ARG PYVERSION=3.11.6
|
6 |
ARG BASE_IMAGE=bullseye
|
7 |
|
8 |
FROM julia:${JLVERSION}-${BASE_IMAGE} AS jl
|
setup.py
CHANGED
@@ -26,5 +26,5 @@ setuptools.setup(
|
|
26 |
"Programming Language :: Python :: 3",
|
27 |
"Operating System :: OS Independent",
|
28 |
],
|
29 |
-
python_requires=">=3.
|
30 |
)
|
|
|
26 |
"Programming Language :: Python :: 3",
|
27 |
"Operating System :: OS Independent",
|
28 |
],
|
29 |
+
python_requires=">=3.7",
|
30 |
)
|