From 919c89dfda7112ea49c67eeec35cd73a7f2549dc Mon Sep 17 00:00:00 2001 From: jacobdenobel Date: Mon, 7 Mar 2022 18:31:21 +0100 Subject: [PATCH] add dependecy to github action --- .github/workflows/python-publish.yml | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 78a75b04a..198f96167 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -32,7 +32,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install setuptools wheel twine ninja + pip install setuptools wheel twine ninja xmltodict - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} @@ -54,7 +54,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install setuptools wheel twine + pip install setuptools wheel twine xmltodict - name: build manylinux uses: RalfG/python-wheels-manylinux-build@v0.3.3-manylinux2010_x86_64 with: @@ -81,7 +81,7 @@ jobs: sudo apt update -y sudo apt install ninja-build -y python -m pip install --upgrade pip - pip install setuptools wheel twine mypy + pip install setuptools wheel twine mypy xmltodict - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} diff --git a/setup.py b/setup.py index f086a1ee4..c5111f95b 100644 --- a/setup.py +++ b/setup.py @@ -168,7 +168,7 @@ def generate_docs(): # The information here can also be placed in setup.cfg - better separation of # logic and declaration, and simpler if you include description/version in a file. -__version__ = "0.3.2.6" +__version__ = "0.3.2.7.2" gh_ref = os.environ.get("GITHUB_REF") if gh_ref: *_, tag = gh_ref.split("/")