Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Python Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Templates
Python Project
Merge requests
!5
Modernise build system
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Modernise build system
modernise-build-system
into
master
Overview
0
Commits
2
Pipelines
2
Changes
4
Open
Tamas Gal
requested to merge
modernise-build-system
into
master
3 weeks ago
Overview
0
Commits
2
Pipelines
2
Changes
4
Expand
0
0
Merge request reports
Compare
master
version 1
113df982
3 weeks ago
master (HEAD)
and
latest version
latest version
ded8ab39
2 commits,
3 weeks ago
version 1
113df982
1 commit,
3 weeks ago
4 files
+
76
−
34
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
{{cookiecutter.project_slug}}/.gitlab-ci.yml
+
4
−
20
Options
@@ -19,7 +19,7 @@ stages:
python -V
python3 -m venv venv
source venv/bin/activate
pip install -U pip setuptools wheel setuptools_scm
pip install -U pip setuptools wheel setuptools_scm
packaging
hash -r
pip freeze
make install-dev
@@ -30,22 +30,6 @@ stages:
reports
:
junit
:
"
reports/junit*.xml"
test-py3.6
:
image
:
docker.km3net.de/base/python:3.6
stage
:
test
script
:
-
*virtualenv_definition
-
make test
<<
:
*junit_definition
test-py3.7
:
image
:
docker.km3net.de/base/python:3.7
stage
:
test
script
:
-
*virtualenv_definition
-
make test
<<
:
*junit_definition
test-py3.8
:
image
:
docker.km3net.de/base/python:3.8
stage
:
test
@@ -137,9 +121,9 @@ pypi:
stage
:
release
cache
:
{}
script
:
-
pip install -U twine wheel setuptools_scm
-
python
setup.py
sdist
-
python
setup.py bdist_
wheel
-
pip install -U twine wheel setuptools_scm
build
-
python
-m build --
sdist
-
python
-m build --
wheel
-
twine upload dist/*
only
:
-
tags
Loading