Skip to content

Commit

Permalink
Merge pull request #5 from seandstewart/sean/initial-release
Browse files Browse the repository at this point in the history
Fix PyPI Publish Job
  • Loading branch information
seandstewart committed Apr 26, 2023
2 parents 54385e1 + fb7048b commit c6d48be
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.11
- name: Download distribution artifact
uses: actions/download-artifact@master
with:
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Install Poetry
uses: abatilo/actions-poetry@v2.1.3
with:
poetry-version: ${{ matrix.poetry-version }}
poetry-version: 1.4.2
- name: Publish to PyPI
run: poetry publish -u $PYPI_USERNAME -p $PYPI_PASSWORD
env:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "yesql"
version = "1.0.0b2"
version = "1.0.0b3"
description = "yesql is a SQL-first data access library that will replace your ORM."
authors = ["Sean Stewart <sean_stewart@me.com>"]
license = "MIT"
Expand Down Expand Up @@ -76,7 +76,7 @@ follow_imports = "silent"
exclude = ".*tests/.*|.*docs/.*"

[tool.bumpver]
current_version = "v1.0.0-beta2"
current_version = "v1.0.0-beta3"
version_pattern = "vMAJOR.MINOR.PATCH[-TAGNUM]"
commit_message = "bump version to {new_version} [ci skip]"
tag = false
Expand Down
2 changes: 1 addition & 1 deletion yesql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .api import *

__version__ = "1.0.0b2"
__version__ = "1.0.0b3"

0 comments on commit c6d48be

Please sign in to comment.