Skip to content

Commit 919f99c

Browse files
fix(ci): backport release-v1 CI fixes
Co-authored-by: Miles Cranmer <miles.cranmer@gmail.com>
1 parent 6e645a0 commit 919f99c

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
os: ubuntu-latest
4343
test-id: include
4444
- julia-version: '1'
45-
python-version: '3.8'
45+
python-version: '3.9'
4646
os: ubuntu-latest
4747
test-id: include
4848

.github/workflows/CI_conda_forge.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python-version: ['3.10', '3']
23+
# NOTE: pin to avoid free-threaded Python variants (e.g. 3.14t)
24+
python-version: ['3.10', '3.13']
2425
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
2526

2627
steps:

.github/workflows/update_backend.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ jobs:
4343
fi
4444
4545
- name: "Create PR if necessary"
46-
uses: peter-evans/create-pull-request@v7
46+
uses: peter-evans/create-pull-request@v8
4747
with:
48+
branch: backend-update/v${{ steps.get-latest.outputs.version }}
4849
base: release-v1
4950
title: "Automated update to backend: v${{ steps.get-latest.outputs.version }}"
5051
body: |

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: test
22
channels:
33
- conda-forge
44
dependencies:
5-
- python>=3.8
5+
- python>=3.9
66
- sympy>=1.0.0,<2.0.0
77
- pandas>=0.21.0,<4.0.0
88
- numpy>=1.13.0,<3.0.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [
1111
description = "Simple and efficient symbolic regression"
1212
readme = {file = "README.md", content-type = "text/markdown"}
1313
license = {file = "LICENSE"}
14-
requires-python = ">=3.8"
14+
requires-python = ">=3.9"
1515
classifiers = [
1616
"Programming Language :: Python :: 3",
1717
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)