From 5f7283a2c1f8ca0b0ade67347f9f354396fe4108 Mon Sep 17 00:00:00 2001 From: Thomas Schultz Date: Thu, 22 Mar 2018 23:32:00 -0400 Subject: [PATCH] Fix error on installation (#13) * Fix error on installation #12. * Add requests-mock. * Update version. --- circle.yml | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/circle.yml b/circle.yml index b25ccfc..583f0d2 100644 --- a/circle.yml +++ b/circle.yml @@ -3,10 +3,11 @@ dependencies: - pip install --upgrade pip codecov - pip install -r requirements.txt # latest as of Nov. 7, 2016: 2.7.12, 3.4.5, 3.5.2 - - pyenv local 2.7.12 3.4.4 3.5.2 + - pyenv local 2.7.12 3.4.4 3.5.2 3.6.2 test: override: + - pip install requests-mock - nosetests --with-coverage --cover-package=ziptastic post: - codecov diff --git a/setup.py b/setup.py index 3f97cb4..53853aa 100644 --- a/setup.py +++ b/setup.py @@ -5,12 +5,12 @@ here = path.abspath(path.dirname(__file__)) -with open(path.join(here, 'README.md'), encoding='utf-8') as f: +with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name='ziptastic-python', - version='1.0.0b1', + version='1.0.0b2', description='Official GetZiptastic.com library.', long_description=long_description,