Skip to content

Commit

Permalink
Fix error on installation (#13)
Browse files Browse the repository at this point in the history
* Fix error on installation #12.

* Add requests-mock.

* Update version.
  • Loading branch information
daspecster authored Mar 23, 2018
1 parent 3d2411a commit 5f7283a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5f7283a

Please sign in to comment.