Skip to content

Commit

Permalink
Add CI step to twine check and fix errors (#41)
Browse files Browse the repository at this point in the history
* Add CI step to twine check
* Fix twine errors
  • Loading branch information
michaelosthege authored Jun 20, 2023
1 parent da04da8 commit 25cf485
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ jobs:
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
- name: Test Wheel install and import
- name: Test Wheel build, install and import
run: |
python setup.py bdist_wheel
twine check dist/*
cd dist
pip install bletl*.whl
python -c "import bletl; print(bletl.__version__)"
2 changes: 1 addition & 1 deletion bletl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
NoMeasurementData,
)

__version__ = "1.3.0"
__version__ = "1.3.1"
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ def get_version():
zip_safe=False,
version=__version__,
description="Package for parsing and transforming BioLector raw data.",
long_description=open(pathlib.Path(__file__).parent / "README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/jubiotech/bletl",
author="Michael Osthege",
author_email="[email protected]",
Expand Down

0 comments on commit 25cf485

Please sign in to comment.