Skip to content

Commit 74eb635

Browse files
author
Robert Watts
committed
Prep for 0.2.2.1 release
1 parent 2116687 commit 74eb635

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# PyDomo Changelog
2+
### v0.2.2.1
3+
- Jan 11, 2018
4+
- Circumventing issue in setup.py preventing installing via pip
5+
26
### v0.2.2
37
- Jan 11, 2018
48
- Bug Fixes:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Python3 - Domo API SDK (pydomo)
66
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](http://www.opensource.org/licenses/MIT)
77

8-
Current Release: 0.2.2
8+
Current Release: 0.2.2.1
99

1010
### Notice - Python 3 Compatibility
1111

setup.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,24 @@
44
from os import path
55

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

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

1216
setup(
1317
name='pydomo',
14-
version='0.2.2',
15-
description='The official Python3 Domo API SDK - Domo, Inc.',
18+
version='0.2.2.1',
19+
description=description,
1620
long_description=long_description,
1721
author='Bobby Swingler',
1822
author_email='[email protected]',
1923
url='https://github.com/domoinc/domo-python-sdk',
20-
download_url='https://github.com/domoinc/domo-python-sdk/tarball/0.2.2',
24+
download_url='https://github.com/domoinc/domo-python-sdk/tarball/0.2.2.1',
2125
keywords='domo api sdk',
2226
license='MIT',
2327
packages=find_packages(exclude=['examples']),

0 commit comments

Comments
 (0)