Skip to content

Commit

Permalink
ci: Add Python wheels distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Apr 10, 2021
1 parent 424c288 commit 700aa0c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ jobs:
- run: curl -s -S --retry 3 $BASEDIR/tests/script.sh | bash -
- run: pip install .[test]
- run: pytest /tmp/test_requirements.py
- run: pip install --upgrade check-manifest setuptools
- run: check-manifest
8 changes: 8 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

0.0.5 (2021-04-10)
------------------

Added
~~~~~

- Add Python wheels distribution.

0.0.4 (2020-06-23)
------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
author = 'Open Contracting Partnership and Open Data Services Co-operative Limited'

# The short X.Y version
version = '0.0.4'
version = '0.0.5'
# The full version, including alpha/beta/rc tags
release = version

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@

setup(
name='jscc',
version='0.0.4',
version='0.0.5',
author='Open Contracting Partnership and Open Data Services Co-operative Limited',
author_email='data@open-contracting.org',
url='https://github.com/open-contracting/jscc',
description='Tools for data standards that use JSON Schema and CSV codelists',
license='BSD',
packages=find_packages(exclude=['tests', 'tests.*']),
long_description=long_description,
long_description_content_type='text/x-rst',
install_requires=[
'json-merge-patch',
'jsonref',
Expand Down

0 comments on commit 700aa0c

Please sign in to comment.