From 835a4b34ab34a60512b0b0cabcfd1a70dd00d802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lino?= Date: Fri, 29 Dec 2023 23:06:38 +0100 Subject: [PATCH 1/2] config setup.py --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index d207104..a8a338c 100644 --- a/setup.py +++ b/setup.py @@ -9,16 +9,16 @@ long_description = f.read() setup( - name='tv4you2016_pyvesync', - version='0.0.5', + name='pyvesync_jl', + version='2.1.10.0', description='pyvesync is a library to manage Etekcity\ Devices, Cosori Air Fryers and Levoit Air \ Purifiers run on the VeSync app.', long_description=long_description, long_description_content_type='text/markdown', - url='https://github.com/tv4you2016/pyvesync', - author='Mark Perdue, Joe Trabulsy, Tv4you2016', - author_email='tv4you2016@gmail.com', + url='https://github.com/jl-inspera/pyvesync', + author='Mark Perdue, Joe Trabulsy, Tv4you2016, João Lino', + author_email='joao.oliveira.lino@gmail.com', license='MIT', classifiers=[ 'License :: OSI Approved :: MIT License', From 7e2a467367fcbb50f81be5414459cd3b31207fda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lino?= Date: Fri, 29 Dec 2023 23:24:41 +0100 Subject: [PATCH 2/2] change release branch --- .github/workflows/python-publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index a8c5669..34c7959 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -13,7 +13,7 @@ jobs: name: Build and publish Python distribution runs-on: ubuntu-latest steps: - - uses: actions/checkout@main + - uses: actions/checkout@deploy - name: Initialize Python 3.9 uses: actions/setup-python@v1 @@ -24,14 +24,14 @@ jobs: run: | python -m pip install --upgrade pip pip install flake8 - + - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - + - name: Build binary wheel and a source tarball run: python setup.py sdist