diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1482ffb1d08624a1dfbf61925c9e82207b878a4b..b5ef70a55a849976f7307f96b9984085e6bae64c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -58,5 +58,7 @@ releases: - pip install -r requirements.txt - pip install wheel - pip install twine + - python gen_resources.py + - python gen_translations.py --lrelease - python setup.py bdist_wheel - twine upload dist/* --username duniter --password $PYPI_PASSWORD diff --git a/ci/appveyor/sakia.iss b/ci/appveyor/sakia.iss index 305a1a3508293c3bc3820491d73861f301c1a3ae..669add27418dc0f458834a125c070512d2e82523 100644 --- a/ci/appveyor/sakia.iss +++ b/ci/appveyor/sakia.iss @@ -15,7 +15,7 @@ #error "Unable to find MyAppExe" #endif -#define MyAppVerStr "0.33.0rc4" +#define MyAppVerStr "0.33.0rc5" [Setup] AppName={#MyAppName} diff --git a/ci/travis/debian/DEBIAN/control b/ci/travis/debian/DEBIAN/control index f26aee6e33c3aa9604a7a865612c2097872be7c2..c32cfe1d7504568ccae65fecacb23c1f3c3053fb 100644 --- a/ci/travis/debian/DEBIAN/control +++ b/ci/travis/debian/DEBIAN/control @@ -1,5 +1,5 @@ Package: sakia -Version: 0.33.0rc4 +Version: 0.33.0rc5 Section: misc Priority: optional Architecture: all diff --git a/res/linux/usr/share/applications/sakia.desktop b/res/linux/usr/share/applications/sakia.desktop index e6ea412580e438354e5b897b6ff46915da5280a2..40eded3bb8f0e8fa5525272c15f97256d68aba51 100644 --- a/res/linux/usr/share/applications/sakia.desktop +++ b/res/linux/usr/share/applications/sakia.desktop @@ -1,5 +1,5 @@ [Desktop Entry] -Version=0.33.0rc4 +Version=0.33.0rc5 Name=Sakia Comment=Duniter Qt Client Exec=sakia diff --git a/setup.py b/setup.py index fbc2b7c2ff91f3afb6efde32ee4ab100354a5f76..b98e1e6752d5fdc45af00096bebb414853579d67 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,10 @@ def which(program): return None + + +path = os.path.abspath(os.path.join(os.path.dirname(__file__))) + EDITABLE_REQUIREMENT = re.compile(r'^-e (?P<link>(?P<vcs>git|svn|hg|bzr).+#egg=(?P<package>.+)-(?P<version>\d(?:\.\d)*))$') install_requires = [] diff --git a/src/sakia/__init__.py b/src/sakia/__init__.py index e5a12adc7d5bed423a67c76ba4afb58e67a1ca2c..6a5e1aa28a42d6550d7a579c7f7f9ba8fe9c9446 100644 --- a/src/sakia/__init__.py +++ b/src/sakia/__init__.py @@ -1,2 +1,2 @@ -__version_info__ = ('0', '33', '0rc4') +__version_info__ = ('0', '330', '') __version__ = '.'.join(__version_info__)