From bb51c7327435b180dfd54547fc175945e0f75d50 Mon Sep 17 00:00:00 2001 From: lukaszszpak <alukasz1@interia.pl> Date: Thu, 28 Sep 2023 14:35:13 +0200 Subject: [PATCH] chore: repository package with uuid --- .gitlab-ci.yml | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b80625c..c85983e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,11 +36,12 @@ push_wheel: - pip install twine only: - master + - plwn-api-uuid stage: push_wheel when: on_success script: - python setup.py sdist bdist_wheel - - python -m twine upload + - python -m twine upload --repository-url https://pypi.clarin-pl.eu/ -u $PIPY_USER -p $PIPY_PASS dist/plwn_api*.whl diff --git a/setup.py b/setup.py index 32793b9..fa88272 100644 --- a/setup.py +++ b/setup.py @@ -8,8 +8,8 @@ import os ENVNAME_DIST_NODEFAULT = 'PLWN_API_DIST_NO_DEFAULT_STORAGE' setup_args = dict( - name='plwn_api', - version='0.24', + name='plwn_api_uuid', + version='0.1', license='LGPL-3.0+', description='Python API to access plWordNet lexicon', -- GitLab