Skip to content

Commit

Permalink
Prep for 0.2.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Watts committed Jan 11, 2018
1 parent 2116687 commit 74eb635
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# PyDomo Changelog
### v0.2.2.1
- Jan 11, 2018
- Circumventing issue in setup.py preventing installing via pip

### v0.2.2
- Jan 11, 2018
- Bug Fixes:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Python3 - Domo API SDK (pydomo)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](http://www.opensource.org/licenses/MIT)

Current Release: 0.2.2
Current Release: 0.2.2.1

### Notice - Python 3 Compatibility

Expand Down
16 changes: 10 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,24 @@
from os import path

here = path.abspath(path.dirname(__file__))
description = 'The official Python3 Domo API SDK - Domo, Inc.'

# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# Try to get the long description from the README file
try:
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except FileNotFoundError as fnfe:
long_description=description

setup(
name='pydomo',
version='0.2.2',
description='The official Python3 Domo API SDK - Domo, Inc.',
version='0.2.2.1',
description=description,
long_description=long_description,
author='Bobby Swingler',
author_email='bobby.swingler@domo.com',
url='https://github.com/domoinc/domo-python-sdk',
download_url='https://github.com/domoinc/domo-python-sdk/tarball/0.2.2',
download_url='https://github.com/domoinc/domo-python-sdk/tarball/0.2.2.1',
keywords='domo api sdk',
license='MIT',
packages=find_packages(exclude=['examples']),
Expand Down

0 comments on commit 74eb635

Please sign in to comment.