Skip to content
Snippets Groups Projects
Commit ad103e75 authored by inso's avatar inso
Browse files

Fix gitlab

parent 01edbd03
No related branches found
No related tags found
No related merge requests found
......@@ -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
from setuptools import setup, find_packages
import os
import re
import subprocess
import sys
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), 'src')))
import sakia
......@@ -31,13 +30,6 @@ def which(program):
path = os.path.abspath(os.path.join(os.path.dirname(__file__)))
subprocess.call(
"python {0}/gen_resources.py".format(path), shell=True
)
subprocess.call(
"python {0}/gen_translations.py".format(path), shell=True
)
EDITABLE_REQUIREMENT = re.compile(r'^-e (?P<link>(?P<vcs>git|svn|hg|bzr).+#egg=(?P<package>.+)-(?P<version>\d(?:\.\d)*))$')
install_requires = []
......
......@@ -133,7 +133,7 @@ class ConnectionConfigView(QDialog, Ui_ConnectionConfigurationDialog):
def action_show_pubkey(self):
salt = self.edit_salt.text()
password = self.edit_password.text()
pubkey = SigningKey(salt, password, self.scrypt_params).pubkey
pubkey = SigningKey(salt, password, self.scrypt_params).pubkey.decode("utf-8")
self.label_info.setText(pubkey)
def account_name(self):
......
  • inso @Insoleet

    mentioned in commit a1f2f7c7

    ·

    mentioned in commit a1f2f7c7

    Toggle commit list
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment