Skip to content

Commit

Permalink
Merge pull request #20 from dryan/change-to-uv
Browse files Browse the repository at this point in the history
♻️ change to uv publish to send to pypi
  • Loading branch information
dryan authored Nov 13, 2024
2 parents c1e08c0 + b310e75 commit f7365bd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 37 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release_new_tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ jobs:
- name: Setup Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Build & Publish
run: |
uv build
uv publish -u $PYPI_USERNAME -p $PYPI_PASSWORD
uv publish
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "d3ploy"
version = "4.4.0"
version = "4.4.1"
description = "Easily deploy to S3 with multiple environment support."
authors = [
{name = "dryan", email = "[email protected]"},
Expand Down Expand Up @@ -30,6 +30,9 @@ homepage = "https://github.com/dryan/d3ploy"
repository = "https://github.com/dryan/d3ploy"
documentation = "https://github.com/dryan/d3ploy#readme"

[project.scripts]
d3ploy = "d3ploy.cli"

[tool.ruff.lint.isort]
force-single-line = true

Expand Down
32 changes: 0 additions & 32 deletions setup.py

This file was deleted.

0 comments on commit f7365bd

Please sign in to comment.