Skip to content

Commit

Permalink
Merge pull request #445 from chinapandaman/PPF-444
Browse files Browse the repository at this point in the history
PPF-444: stop calling setup.py directly
  • Loading branch information
chinapandaman authored Jan 16, 2024
2 parents 0403846 + 5352820 commit 422488d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install build twine
- name: Build and deploy to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
python -m build -s
python -m build -w
twine upload dist/*
2 changes: 1 addition & 1 deletion PyPDFForm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""Contains any object users might need."""

__version__ = "1.4.1"
__version__ = "1.4.2"

from .wrapper import PdfWrapper, PyPDFForm

0 comments on commit 422488d

Please sign in to comment.