Skip to content

Commit b54c017

Browse files
committed
fix(make): add twine as a dev dep
1 parent 767391b commit b54c017

File tree

3 files changed

+108
-4
lines changed

3 files changed

+108
-4
lines changed

python/Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ pr: lint test
2424

2525
release: pr
2626
python setup.py sdist bdist_wheel
27-
twine upload dist/* --verbose
27+
pipenv run twine upload dist/* --verbose
28+
rm -rf dist build
2829

2930
release-test: pr
3031
python setup.py sdist bdist_wheel
31-
twine upload --repository testpypi dist/* --verbose
32+
pipenv run twine upload --repository testpypi dist/* --verbose
33+
rm -rf dist build

python/Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ pytest = "~=5.0"
2121
pytest-cov = "*"
2222
pytest-mock = "*"
2323
bumpversion = "*"
24+
twine = "*"
2425

2526
[packages]
2627
lambda-powertools = {editable = true,path = "."}

python/Pipfile.lock

Lines changed: 103 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)