Skip to content

Commit

Permalink
Merge pull request #17 from yanokwa/fix-release-build
Browse files Browse the repository at this point in the history
Prepare 0.1.0 release
  • Loading branch information
lognaturel authored Sep 26, 2022
2 parents d5f4094 + fbfecd6 commit 647deb3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ jobs:
pip install wheel
python bin/clean_for_build.py
python setup.py sdist bdist_wheel
# Check.
- name: Check dist with twine
run: |
pip install twine
twine check dist/*
- name: Upload sdist and wheel.
if: success()
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion pyodk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging

__version__ = "0.0.1"
__version__ = "0.1.0"


logging.getLogger(__name__).addHandler(logging.NullHandler())
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
url="https://pypi.python.org/pypi/pyodk/",
description="The official Python library for ODK 🐍",
long_description=open("README.md", "r").read(),
long_description_content_type='text/markdown',
license="Apache License, Version 2.0",
python_requires=">=3.8",
install_requires=(
Expand Down

0 comments on commit 647deb3

Please sign in to comment.