Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pycode-quality
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CDOS-Pub
pycode-quality
Merge requests
!22
Add libexpat before pip build
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add libexpat before pip build
fix_libexpatwq
into
main
Overview
0
Commits
18
Pipelines
18
Changes
4
Merged
Pablo Boizeau
requested to merge
fix_libexpatwq
into
main
1 month ago
Overview
0
Commits
18
Pipelines
18
Changes
4
Expand
0
0
Merge request reports
Compare
main
version 17
ec88e56a
1 month ago
version 16
4a0debe9
1 month ago
version 15
f0cb869f
1 month ago
version 14
83552c78
1 month ago
version 13
c2eb8af7
1 month ago
version 12
ff6de77b
1 month ago
version 11
f5345629
1 month ago
version 10
614818c0
1 month ago
version 9
510058f6
1 month ago
version 8
e603732d
1 month ago
version 7
6444c637
1 month ago
version 6
106a279b
1 month ago
version 5
9d834fb7
1 month ago
version 4
ce41662c
1 month ago
version 3
e17c62e5
1 month ago
version 2
fc4f30f7
1 month ago
version 1
0447faca
1 month ago
main (base)
and
latest version
latest version
8e60e365
18 commits,
1 month ago
version 17
ec88e56a
17 commits,
1 month ago
version 16
4a0debe9
16 commits,
1 month ago
version 15
f0cb869f
15 commits,
1 month ago
version 14
83552c78
14 commits,
1 month ago
version 13
c2eb8af7
13 commits,
1 month ago
version 12
ff6de77b
12 commits,
1 month ago
version 11
f5345629
11 commits,
1 month ago
version 10
614818c0
10 commits,
1 month ago
version 9
510058f6
9 commits,
1 month ago
version 8
e603732d
8 commits,
1 month ago
version 7
6444c637
7 commits,
1 month ago
version 6
106a279b
6 commits,
1 month ago
version 5
9d834fb7
5 commits,
1 month ago
version 4
ce41662c
4 commits,
1 month ago
version 3
e17c62e5
3 commits,
1 month ago
version 2
fc4f30f7
2 commits,
1 month ago
version 1
0447faca
1 commit,
1 month ago
4 files
+
13
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
.gitlab/ci/static-analysis.yml
+
4
−
0
Options
@@ -3,6 +3,8 @@ variables:
PYTHON_IMG
:
python:3.12-slim
PACKAGE_INSTALL_EXTRAS
:
"
"
PIP_RASTERIO_USED
:
false
# Used when included
STATIC_ANALYSIS_IMG
:
registry.forgemia.inra.fr/cdos-pub/pycode-quality/python-static-analysis:3.12
@@ -20,6 +22,8 @@ variables:
-
$CI_PROJECT_DIR/.cache/pip
before_script
:
-
python --version; pip --version
# Install libexpat, required for rasterio
-
if [ "$PIP_RASTERIO_USED" == "true" ]; then apt-get update; apt-get install libexpat1; apt-get clean; fi
# See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#dependencies-optional-dependencies
-
pip install -e ".${PACKAGE_INSTALL_EXTRAS}"
-
pip list -v
Loading