Skip to content

Commit

Permalink
fix pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
agalera committed Jan 11, 2017
2 parents bb28cbe + e99f243 commit 551b604
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: python
python:
# - 2.6 failed webtest lib
- 2.6
- 2.7
# - 3.2 failed coverage lib
- 3.3
Expand All @@ -10,7 +10,7 @@ python:
- pypy

install:
- pip install webtest
- pip install webtest==2.0.23
- pip install codecov
- pip install bottle
- python${PY:-} setup.py develop
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# CHANGELOG
## 0.0.12 (11-01-2017)

## 0.0.13 (11-01-2017)
- Fix install package via pip!

## 0.0.12 (06-01-2017)
- Fix tests to python 2.6

## 0.0.11 (05-01-2017)
- Fix compatibility list in pypi
- Add python 3.6 to tests in travis
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

setup(
name='bottlejwt',
version='0.0.12',
version='0.0.13',
description='JWT plugin for bottle',
long_description=readme + "\n\n" + changelog,
author='Alberto Galera Jimenez',
Expand All @@ -45,6 +45,7 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
Expand Down

0 comments on commit 551b604

Please sign in to comment.