From dea94bd8cc66cd1f1847e4f963d214aa694325e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@ericsson.com> Date: Sat, 3 Aug 2024 19:58:35 +0200 Subject: [PATCH] bump --- .gitlab-ci.yml | 9 +++++++-- docs/conf.py | 2 +- setup.cfg | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0c54c94..bf81a89 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -49,10 +49,11 @@ test_python311: .build_python: stage: build script: - - pip install --break-system-packages --upgrade Cython setuptools pip + - pip install --break-system-packages --upgrade Cython setuptools pip repairwheel doctor-wheel - pip install --break-system-packages -r requirements.txt - python setup.py bdist_wheel - - cp dist/*.whl . + - repairwheel dist/*.whl -o . + - doctor-wheel *.whl artifacts: paths: - "*.whl" @@ -97,6 +98,10 @@ upload_to_twine_python311_armv7l: dependencies: - build_python311_armv7l script: + - mkdir dist2 + - mv *.whl dist2/ + - repairwheel dist2/*.whl -o . + - doctor-wheel *.whl - TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python3 -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi *.whl only: - tags diff --git a/docs/conf.py b/docs/conf.py index 56b9958..50925f9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ project = 'tempsdb' copyright = '2020-2024, Piotr MaĹlanka' author = 'Piotr MaĹlanka' -release = '0.6.7a1' +release = '0.6.6' # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index be69dc7..f5f999e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ # coding: utf-8 [metadata] name = tempsdb -version = 0.6.7a1 +version = 0.6.6 long_description = file: README.md long_description-content-type = text/markdown; charset=UTF-8 license_files = LICENSE -- GitLab