We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc50668 commit 935db04Copy full SHA for 935db04
.gitlab-ci.yml
@@ -13,27 +13,20 @@ include:
13
build-python-package:
14
stage: build
15
before_script:
16
- - pipenv install --system --dev
17
- - pip install packaging
+ - pip install uv
18
script:
19
- - echo "Building the project..."
20
- - python -m build --wheel
+ - tools/build-package.sh
21
artifacts:
22
paths:
23
- - dist
+ - 'dist/*.whl'
24
expire_in: 1 week
25
26
build-documentation:
27
28
29
30
- - pip install -e .
31
32
- - pip install tomli
33
- - pip install certifi
34
35
- - cd docs
36
- - pipenv run make html
+ - tools/build-docs.sh
37
38
code_quality:
39
when: manual
0 commit comments