File tree Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 1
1
# PyDomo Changelog
2
+ ### v0.2.2.1
3
+ - Jan 11, 2018
4
+ - Circumventing issue in setup.py preventing installing via pip
5
+
2
6
### v0.2.2
3
7
- Jan 11, 2018
4
8
- Bug Fixes:
Original file line number Diff line number Diff line change 5
5
# Python3 - Domo API SDK (pydomo)
6
6
[ ![ License] ( https://img.shields.io/badge/license-MIT-blue.svg?style=flat )] ( http://www.opensource.org/licenses/MIT )
7
7
8
- Current Release: 0.2.2
8
+ Current Release: 0.2.2.1
9
9
10
10
### Notice - Python 3 Compatibility
11
11
Original file line number Diff line number Diff line change 4
4
from os import path
5
5
6
6
here = path .abspath (path .dirname (__file__ ))
7
+ description = 'The official Python3 Domo API SDK - Domo, Inc.'
7
8
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
11
15
12
16
setup (
13
17
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 ,
16
20
long_description = long_description ,
17
21
author = 'Bobby Swingler' ,
18
22
19
23
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 ' ,
21
25
keywords = 'domo api sdk' ,
22
26
license = 'MIT' ,
23
27
packages = find_packages (exclude = ['examples' ]),
You can’t perform that action at this time.
0 commit comments