Skip to content
Snippets Groups Projects
Commit c9201b12 authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

Merge branch 'f-add-py314-to-pipeline' into 'dev'

Add python 3.14 release candidate to pylib pipeline

See merge request !179
parents a17a3198 1459d6c6
No related branches found
No related tags found
2 merge requests!189ENH: add convenience functions,!179Add python 3.14 release candidate to pylib pipeline
Pipeline #61881 passed with warnings
...@@ -101,13 +101,26 @@ unittest_py3.12: ...@@ -101,13 +101,26 @@ unittest_py3.12:
script: *python_test_script script: *python_test_script
unittest_py3.13: unittest_py3.13:
allow_failure: true
tags: [ docker ] tags: [ docker ]
stage: test stage: test
needs: [ ] needs: [ ]
image: python:3.13 image: python:3.13
script: *python_test_script script: *python_test_script
unittest_py3.14:
allow_failure: true # remove on release
tags: [ docker ]
stage: test
needs: [ ]
image: python:3.14-rc
script: # replace by '*python_test_script' on release
# Install cargo manually, source its env, and set it to accept 3.14 as interpreter
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- . "$HOME/.cargo/env"
- export PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1
# Continue normally
- *python_test_script
# Trigger building of server image and integration tests # Trigger building of server image and integration tests
trigger_build: trigger_build:
stage: deploy stage: deploy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment