We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a4eb3a commit a3b436bCopy full SHA for a3b436b
.github/workflows/publish.yml
@@ -39,4 +39,4 @@ jobs:
39
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
40
run: |
41
poetry config pypi-token.pypi $PYPI_TOKEN
42
- make deploy
+ poetry publish --build
Makefile
@@ -1,4 +1,4 @@
1
-.PHONY: init format test check deploy requirements
+.PHONY: init format test check requirements
2
3
init:
4
python -m pip install -U poetry
@@ -16,9 +16,6 @@ check:
16
black -S -l 119 --check pytorch_optimizer tests setup.py lint.py
17
python lint.py
18
19
-deploy:
20
- python -m poetry publish --build
21
-
22
requirements:
23
python -m poetry export -f requirements.txt --output requirements.txt --without-hashes
24
python -m poetry export --dev -f requirements.txt --output requirements-dev.txt --without-hashes
0 commit comments