Skip to content

Commit

Permalink
Test github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
gintsmurans committed Jul 16, 2024
1 parent b584521 commit 59487d5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,17 @@ jobs:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
# retrieve your distributions here
- uses: actions/checkout@v3

- uses: actions/setup-python@v4
with:
python-version: "3.x"

- name: deps
run: python -m pip install -U build

- name: build
run: python -m build

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools import find_packages
from distutils.core import setup

version = "1.5.0"
version = "1.5.1"

with open("README.rst") as f:
long_description = f.read()
Expand Down

0 comments on commit 59487d5

Please sign in to comment.