Skip to content

Commit

Permalink
Merge pull request #4 from seandstewart/sean/initial-release
Browse files Browse the repository at this point in the history
Fix sdist Build Job
  • Loading branch information
seandstewart committed Apr 26, 2023
2 parents 54e6ce3 + c78e205 commit 54385e1
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 @@ -38,11 +38,11 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.11
- name: Install Poetry
uses: abatilo/actions-poetry@v2.1.3
with:
poetry-version: ${{ matrix.poetry-version }}
poetry-version: 1.4.2
- name: Build sdist
run: poetry build -f sdist
- name: Store dist artifacts
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.0b1"
version = "1.0.0b2"
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-beta1"
current_version = "v1.0.0-beta2"
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.0b1"
__version__ = "1.0.0b2"

0 comments on commit 54385e1

Please sign in to comment.