Skip to content

Commit

Permalink
Merge ee7ee23 into 8bbcf64
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkokotila committed May 6, 2018
2 parents 8bbcf64 + ee7ee23 commit 8591e93
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion astetik/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@
except:
pass

__version__ = "1.9.4"
__version__ = "1.9.4.1"
2 changes: 1 addition & 1 deletion astetik/plots/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.9.4"
__version__ = "1.9.4.1"
2 changes: 1 addition & 1 deletion astetik/style/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.9.4"
__version__ = "1.9.4.1"
2 changes: 1 addition & 1 deletion astetik/tables/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.9.4"
__version__ = "1.9.4.1"
2 changes: 1 addition & 1 deletion astetik/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.9.4"
__version__ = "1.9.4.1"
6 changes: 5 additions & 1 deletion astetik/utils/country_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

import pkg_resources

countries = pkg_resources.resource_filename('astetik', 'extras/countries.csv')
try:
countries = pkg_resources.resource_filename('astetik', 'extras/countries.csv')
except IOError:
countries = 'https://raw.githubusercontent.com/mikkokotila/astetik/master/astetik/extras/countries.csv'

countries = pd.read_csv(countries)


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
URL = 'http://mikkokotila.com'
LICENSE = 'MIT'
DOWNLOAD_URL = 'https://github.com/mikkokotila/pretty'
VERSION = '1.9.4'
VERSION = '1.9.4.1'

try:
from setuptools import setup
Expand Down

0 comments on commit 8591e93

Please sign in to comment.