Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/CI.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.12']
os: [ubuntu-latest]

steps:
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
python-version: ['3.9']
python-version: ['3.12']
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.12']

steps:
- uses: actions/checkout@v3
Expand All @@ -164,8 +164,8 @@ jobs:
- name: "Install PySR and all dependencies"
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install mypy jax jaxlib torch
python -m pip install -r requirements.txt
python -m pip install mypy jax jaxlib torch
python setup.py install
- name: "Run mypy"
run: mypy --install-types --non-interactive pysr
run: python -m mypy --install-types --non-interactive pysr
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.12']
os: [windows-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI_conda_forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.10', '3.11', '3.12']
os: ['ubuntu-latest', 'macos-latest']
use-mamba: [true, false]

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 @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
julia-version: ['1.6', '1.9']
python-version: ['3.10']
python-version: ['3.12']
os: [ubuntu-latest]
arch: ['linux/amd64', 'linux/arm64']

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI_large_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
matrix:
julia-version: ['1.6', '1.8', '1.9']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI_mac.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.12']
os: [macos-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: "Set up Python"
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.11
cache: pip
- name: "Install packages for docs building"
run: pip install -r docs/requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: "Set up Python"
uses: actions/setup-python@v4
with:
python-version: 3.10.8
python-version: 3.11
- name: "Install building tools"
run: pip install wheel
- name: "Build package"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.11
cache: pip

- name: "Install PySR"
Expand Down