Skip to content

Commit

Permalink
v0.5.4 - Use hatchling as build-system
Browse files Browse the repository at this point in the history
  • Loading branch information
bblommers committed Apr 5, 2024
1 parent e8c6134 commit e157594
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel setuptools packaging twine build --upgrade
pip install hatchling packaging twine build --upgrade
- name: Verify Tag does not exist
run: |
! git rev-parse ${{ env.VERSION }} || { echo "Ensure that no tag exists for ${{ env.VERSION }}" ; exit 1; }
Expand Down
2 changes: 1 addition & 1 deletion py_partiql_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.5.3"
__version__ = "0.5.4"


from ._internal.parser import DynamoDBStatementParser, S3SelectParser # noqa
Expand Down
13 changes: 5 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "py-partiql-parser"
version = "0.5.3"
version = "0.5.4"
description = "Pure Python PartiQL Parser"
readme = "README.md"
keywords = ["pypartiql", "parser"]
Expand All @@ -9,8 +9,8 @@ authors = [{name="Bert Blommers", email="info@bertblommers.nl"}]

dependencies = []

[tool.setuptools]
packages = ["py_partiql_parser"]
[tool.hatch.build]
include = ["py_partiql_parser/*"]

[project.urls]
"Homepage" = "https://github.com/getmoto/py-partiql-parser"
Expand All @@ -26,8 +26,5 @@ dev = [
]

[build-system]
requires = [
"setuptools>=59.0.0",
"wheel"
]
build-backend = "setuptools.build_meta"
requires = ["hatchling"]
build-backend = "hatchling.build"

0 comments on commit e157594

Please sign in to comment.