From 396b7e0c58f5826e13a1d433fc57dc9d7bce6fb8 Mon Sep 17 00:00:00 2001
From: bastien-mva <bastien.batardiere@gmail.com>
Date: Sat, 13 May 2023 12:11:36 +0200
Subject: [PATCH] try to upload to pypi

---
 .gitlab-ci.yml | 6 +++---
 setup.py       | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 79e1610f..2463566c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -26,13 +26,13 @@ publish_package:
   script:
     - pip install twine
     - python setup.py bdist_wheel
-    - TWINE_PASSWORD=${pypln_token} TWINE_USERNAME=${account_name} python -m twine upload dist/*
+    - TWINE_PASSWORD=${pypln_token} TWINE_USERNAME=__token__ python -m twine upload dist/*
   tags:
     - docker
   only:
     - main
-  # only:
-  #   - tags
+  only:
+    - tags
 
 pages:
   stage: publish
diff --git a/setup.py b/setup.py
index 9c8b2745..01f54f5c 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 from setuptools import setup, find_packages
 
-VERSION = "0.0.38"
+VERSION = "0.0.41"
 
 with open("README.md", "r") as fh:
     long_description = fh.read()
-- 
GitLab