Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: pip install -r requirements.txt
run: pip install build
- name: Build
run: python setup.py sdist
run: python -m build
- name: Upload Distributions
uses: actions/upload-artifact@v4
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,7 @@ jobs:
- test
steps:
- uses: actions/checkout@v4
- name: Install build
run: pip install build
- name: Build
run: python setup.py sdist
run: python -m build
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ yapf -rip .
### Deploying to PyPi

```shell
python setup.py sdist
python -m build
twine upload dist/*
```

Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
pylint==3.3.3
pytest==8.3.4
pytype==2024.10.11
setuptools==75.6.0
yapf==0.43.0