From 127f66c54948b47c21e2b7a1028a08c8f0a55e82 Mon Sep 17 00:00:00 2001 From: JesusTorrado Date: Wed, 11 Oct 2023 15:02:51 +0200 Subject: [PATCH] travis: 2nd fix attempt --- .travis.yml | 2 -- setup.py | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 setup.py diff --git a/.travis.yml b/.travis.yml index 408cb6118..80715932f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -138,8 +138,6 @@ after_success: ############################################################################### # DEPLOYMENT to PyPI (only if it builds and if the commit has been tagged) -before_deploy: - - echo > setup.py deploy: provider: pypi username: JesusTorrado diff --git a/setup.py b/setup.py new file mode 100644 index 000000000..94b82e395 --- /dev/null +++ b/setup.py @@ -0,0 +1,5 @@ +# Minimal file for backwards compatibility. Config is kept in pyproject.toml + +from setuptools import setup + +setup()