diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 90a3c3c..3c320e4 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -36,6 +36,5 @@ jobs: - name: Publish package uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 with: - repository_url: https://test.pypi.org/legacy/ user: axelk1 - password: ${{ secrets.TESTPYPI_EFMTOOL_LINK_TOKEN }} + password: ${{ secrets.PYPI_EFMTOOL_LINK_TOKEN }} diff --git a/setup.py b/setup.py index 79a0ef2..e100a09 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,6 @@ class PostInstallCommand(install): def run(self): install.run(self) - print("start PostInstallCommand run") try: getDefaultJVMPath() except (JVMNotFoundException, JVMNotSupportedException): @@ -36,7 +35,6 @@ def run(self): break if not has_jre: # very unlikely print("Could not install a Java Runtime Environtment, you need to install one yourself.") - print("end PostInstallCommand run") setup(name='efmtool_link', packages=['efmtool_link', 'efmtool_link.lib'],