From 4014bb3aea41306b761947b60de0a17d8abba23b Mon Sep 17 00:00:00 2001 From: Kayson Date: Mon, 5 Feb 2024 14:59:32 +0100 Subject: [PATCH] PyPi automation --- .github/workflows/publish_pypi.yml | 42 ++++++++++++++++++++++++++++++ msapy/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 44 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/publish_pypi.yml diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml new file mode 100644 index 0000000..e60cbdd --- /dev/null +++ b/.github/workflows/publish_pypi.yml @@ -0,0 +1,42 @@ +# This workflow will upload a Python Package using Twine when a release is created +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: Upload Python Package + +on: + push: + branches: + main + +permissions: + contents: read + +jobs: + deploy: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v3 + with: + python-version: '3.9' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build setuptools wheel twine + - name: Build package + run: | + rm dist/* + python setup.py sdist bdist_wheel + - name: Publish package to PyPI + uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 + with: + user: __token__ + password: ${{ secrets.PYPI_API_TOKEN }} \ No newline at end of file diff --git a/msapy/__init__.py b/msapy/__init__.py index d5eae13..ff036bb 100644 --- a/msapy/__init__.py +++ b/msapy/__init__.py @@ -1,2 +1,2 @@ from msapy import msa, utils, plottings,checks -__version__ = "1.5" \ No newline at end of file +__version__ = "1.6" \ No newline at end of file diff --git a/setup.py b/setup.py index 05706a9..3f6616f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ test_packages = ["pytest~=6.2.5"] setup(name="msapy", - version="1.5", + version="1.6", description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',