Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = "dryan@users.noreply.github.com"},
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.