Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-advanced-user-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-advanced-user-tools
Merge requests
!130
Add python 3.14 release candidate to advancedtools pipeline
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Add python 3.14 release candidate to advancedtools pipeline
f-add-py314-to-pipeline
into
dev
Overview
2
Commits
1
Pipelines
1
Changes
1
Merged
I. Nüske
requested to merge
f-add-py314-to-pipeline
into
dev
4 months ago
Overview
2
Commits
1
Pipelines
1
Changes
1
Summary
Added a test stage with a python 3.14-rc image to the pipeline.
Part of
caosdb-pylib#216 (closed)
Check List for the Author
All automated tests pass
Reference related issues
Appropriate user and developer documentation (or not necessary)
Annotations in code (Gitlab comments)
Check List for the Reviewer
I understand the intent of this MR
All automated tests pass
Up-to-date CHANGELOG.md (or not necessary)
Appropriate user and developer documentation (or not necessary)
The test environment setup works and the intended behavior is reproducible in the test environment
In-code documentation and comments are up-to-date.
Check: Are there specifications? Are they satisfied?
Edited
4 months ago
by
Florian Spreckelsen
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
c660e88c
1 commit,
4 months ago
1 file
+
22
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
22
−
0
View file @ c660e88c
Edit in single-file editor
Open in Web IDE
Show full file
@@ -162,6 +162,28 @@ unittest_py313:
image
:
python:3.13
script
:
*python_test_script
unittest_py314
:
allow_failure
:
true
# remove on release
tags
:
[
docker
]
stage
:
unittest
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
# Install hdf5 dependencies
-
apt-get update -y
-
apt-get install -y pkg-config libhdf5-dev
# Install packages
-
pip install --break-system-packages git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev
-
pip install --break-system-packages .[all]
# Force pytest to current version as 6.x is incompatible with 3.14
-
pip install --upgrade pip
-
pip install pytest==8.3.4
# Run tests
-
pytest --cov=caosadvancedtools unittests
# Build the sphinx documentation and make it ready for deployment by Gitlab Pages
# Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages
pages_prepare
:
&pages_prepare
Loading