summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Lorey <git@karllorey.com>2020-09-27 13:54:40 +0200
committerKarl Lorey <git@karllorey.com>2020-09-27 13:54:40 +0200
commit873f75f2802ace85d0d292ee60d251b277f84118 (patch)
treee70763a540df1ce9981826165aef053d8ba630eb
parenta1fcb2f52c4edcfd2a0aaec48141c99349b51259 (diff)
Fix history formatting to prevent pypi rejection
-rw-r--r--HISTORY.rst3
-rw-r--r--Makefile4
2 files changed, 6 insertions, 1 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index bcce7a4..66d56be 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -2,7 +2,8 @@
History
=======
-0.1.0 (2020-09-27)
+------------------
+0.1.2 (2020-09-27)
------------------
* First release on PyPI.
diff --git a/Makefile b/Makefile
index 6e73f7f..457043b 100644
--- a/Makefile
+++ b/Makefile
@@ -56,6 +56,10 @@ test: ## run tests quickly with the default Python
test-all: ## run tests on every Python version with tox
tox
+test-dist: ## check if pypi will accept package (readme rendering, etc)
+ python setup.py sdist bdist_wheel
+ twine check dist/*
+
coverage: ## check code coverage quickly with the default Python
coverage run --source mlscraper -m pytest
coverage report -m