Skip to content

Commit

Permalink
add dependecy to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdenobel committed Mar 7, 2022
1 parent f18884e commit 919c89d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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/[email protected]_x86_64
with:
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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("/")
Expand Down

0 comments on commit 919c89d

Please sign in to comment.