Skip to content

Commit

Permalink
Merge pull request #20 from MohammadrezaAmani/inui-1.0.0.1-query
Browse files Browse the repository at this point in the history
fix: fix as tag.
  • Loading branch information
MohammadrezaAmani authored Nov 23, 2024
2 parents 2c2fe45 + b9d0519 commit a1330e5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/pipy_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,27 @@ on:
push:
branches:
- main

jobs:
build-n-publish:
name: Publish to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: '3.12'
- name: Install dependencies
run: python -m pip install setuptools wheel
- name: Build a binary wheel
run: python setup.py sdist bdist_wheel

- name: Upgrade pip and install tools
run: |
python -m pip install --upgrade pip
python -m pip install build twine uv
- name: Build the package
run: uv build

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# pyproject.toml

[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
requires = ["setuptools>=61.0", "wheel", "uv"]
build-backend = "setuptools.build_meta"

[project]
name = "inui"
version = "1.0.0.1"
version = "1.0.0.2"
description = "Powerful and Highly Customizable Python Library for UI"
readme = "README.md"
authors = [{ name = "Mohammadreza Amani", email = "[email protected]" }]
Expand Down

0 comments on commit a1330e5

Please sign in to comment.