Skip to content

Commit f82e20c

Browse files
fix: pypi upload
1 parent 9b9dd29 commit f82e20c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@ clean:
1414
rm -rf pytest_rts.egg-info
1515

1616
publish: install
17-
pip install --upgrade pip
18-
pip install wheel
19-
$(VENV_DIR)/bin/semantic-release publish -D version_variable=pytest_rts/__init__.py:__version__
17+
. $(VENV_DIR)/bin/activate; $(VENV_DIR)/bin/semantic-release publish -D version_variable=pytest_rts/__init__.py:__version__

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _read_long_description():
2020
)
2121
DEV_REQUIRE = [
2222
"pytest-cov", "pytest-socket", "tox", "python-semantic-release", "black", "mypy",
23-
"pylint", "safety", "wheel"
23+
"pylint", "safety", "wheel", "twine"
2424
]
2525
NAME = "pytest_rts"
2626
NAME_DASHED = NAME.replace("_", "-")

0 commit comments

Comments
 (0)