Skip to content

Commit

Permalink
Test on Python 3.7 again
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Dec 31, 2023
1 parent 864171c commit def34fb
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
shell: bash
strategy:
matrix:
julia-version: ['1.9']
python-version: ['3.10']
julia-version: ['1.6', '1']
python-version: ['3.7', '3.11']
os: [ubuntu-latest]

steps:
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
python-version: ['3.10']
python-version: ['3.11']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI_Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
matrix:
julia-version: ['1.9']
python-version: ['3.10']
python-version: ['3.11']
os: [windows-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI_docker_large_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
julia-version: ['1.6', '1.9']
julia-version: ['1.6', '1']
python-version: ['3.10']
os: [ubuntu-latest]
arch: ['linux/amd64', 'linux/arm64']
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
shell: bash
strategy:
matrix:
julia-version: ['1.9']
python-version: ['3.10']
julia-version: ['1']
python-version: ['3.11']
os: [macos-latest]

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
matrix:
os: [ubuntu-latest]
arch: [linux/amd64]
python-version: [3.10.8]
julia-version: [1.8.2]
python-version: [3.11.6]
julia-version: [1.9.4]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# This builds a dockerfile containing a working copy of PySR
# with all pre-requisites installed.

ARG JLVERSION=1.9.1
ARG PYVERSION=3.10.11
ARG JLVERSION=1.9.4
ARG PYVERSION=3.11.6
ARG BASE_IMAGE=bullseye

FROM julia:${JLVERSION}-${BASE_IMAGE} AS jl
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
python_requires=">=3.7",
)

0 comments on commit def34fb

Please sign in to comment.