Skip to content

Commit 25cf485

Browse files
Add CI step to twine check and fix errors (#41)
* Add CI step to twine check * Fix twine errors
1 parent da04da8 commit 25cf485

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/pipeline.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ jobs:
4141
uses: codecov/codecov-action@v1
4242
with:
4343
file: ./coverage.xml
44-
- name: Test Wheel install and import
44+
- name: Test Wheel build, install and import
4545
run: |
4646
python setup.py bdist_wheel
47+
twine check dist/*
4748
cd dist
4849
pip install bletl*.whl
4950
python -c "import bletl; print(bletl.__version__)"

bletl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
NoMeasurementData,
2020
)
2121

22-
__version__ = "1.3.0"
22+
__version__ = "1.3.1"

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ def get_version():
3030
zip_safe=False,
3131
version=__version__,
3232
description="Package for parsing and transforming BioLector raw data.",
33+
long_description=open(pathlib.Path(__file__).parent / "README.md").read(),
34+
long_description_content_type="text/markdown",
3335
url="https://github.com/jubiotech/bletl",
3436
author="Michael Osthege",
3537
author_email="[email protected]",

0 commit comments

Comments
 (0)