Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d5f1da0
Update conda to use Python 3.12, drop 3.9 and 3.10
tobiasdiez Dec 19, 2024
9ea715f
Merge branch 'develop' into conda-python-upgrade
tobiasdiez Dec 23, 2024
fce9681
Add support for python 3.13 in conda
tobiasdiez Dec 23, 2024
1122dcf
Merge branch 'pr/antonio-rojas/39188' into conda-python-13
tobiasdiez Dec 23, 2024
0bb2a1b
src/sage/libs/flint/flint_wrap.h: Work around 'I' symbol clash
tobiasdiez Dec 24, 2024
ac5a4ff
temporarily allow cysignals 1.12
tobiasdiez Dec 24, 2024
802e473
Merge remote-tracking branch 'upstream/develop' into conda-python-13
tobiasdiez Feb 6, 2025
5d0d0be
Update conda lock files
tobiasdiez Feb 6, 2025
d9ed2af
Readd fpylll for python 3.13
tobiasdiez Feb 6, 2025
21d287c
Merge branch 'pr/antonio-rojas/38749' into conda-python-13
tobiasdiez Feb 6, 2025
6407397
clang-19 build: workaround narrowing-const-reference error
paparodeo Jan 3, 2025
a895195
Merge remote-tracking branch 'upstream/develop' into conda-python-13
tobiasdiez Mar 23, 2025
ec7170a
Merge branch 'develop' into conda-python-13
tobiasdiez Mar 29, 2025
9647a82
add 'python-build' as dev dependency
tobiasdiez Mar 30, 2025
ec48c2c
Run conda env updates in parallel
tobiasdiez Mar 30, 2025
20da9ad
Update conda envs
tobiasdiez Mar 30, 2025
ceb56ac
Merge remote-tracking branch 'upstream/develop' into conda-python-13
tobiasdiez Sep 8, 2025
97a1378
Merge branch 'conda-python-13' of https://github.com/tobiasdiez/sage …
tobiasdiez Sep 8, 2025
731caab
Improve CI test matrix
tobiasdiez Sep 8, 2025
02af978
Force downgrade of maxima and gcc
tobiasdiez Sep 24, 2025
2f6559b
Merge remote-tracking branch 'upstream/develop' into conda-python-13
tobiasdiez Sep 24, 2025
59103d5
Fix Win lock file
tobiasdiez Sep 24, 2025
7984dd9
Merge branch 'develop' into conda-python-13
tobiasdiez Sep 28, 2025
ad44362
Remove version constraints on `c-compiler` and `cxx-compiler`
tobiasdiez Oct 5, 2025
25d0a92
Update linbox
tobiasdiez Oct 5, 2025
d5eb60b
Update libbrial (and use this instead of brial-the-python-lib)
tobiasdiez Oct 5, 2025
899d400
Downgrade ipython
tobiasdiez Oct 5, 2025
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: 7 additions & 5 deletions .github/workflows/ci-meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,24 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu', 'macos', 'windows']
python: ['3.11', '3.12']
python: ['3.12', '3.13']
tests: ['all']
editable:
${{ fromJson(github.event_name == 'pull_request' && '[false]' || '[false, true]') }}
include:
# One run for oldest supported Python
- os: 'ubuntu'
python: '3.11'
tests: 'all'
# Test only changed files
- os: 'ubuntu'
python: '3.12'
tests: 'new'
# one additional editable run in pull_request, this has no effect if not pull_request
# One additional editable run in pull_request, this has no effect if not pull_request
- os: 'ubuntu'
python: '3.12'
editable: true
tests: 'all'
- os: windows
python: '3.13'
tests: 'all'

steps:
- uses: actions/checkout@v4
Expand Down
Loading
Loading