Skip to content

Commit

Permalink
dropped wsgi from requirements, v2.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kenneth-wilke committed Jul 10, 2015
1 parent 8b84681 commit aaaadc3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
v2.0.2, July 10th, 2015 -- Removed wsgiref dependency to ease installation on Python 3.x
v2.0.1, April 27th, 2015 -- 'contacts' endpoint changed to 'notification_contacts'
v2.0.0, March 12th, 2015 -- Another missing legacy attribute added, switching to semvar for versioning
v1.9, January 29th, 2014 -- Missing attributes now filled with None by default, bool serialization fixed, alert_policy implementations
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
PingdomLib v2.0.1
PingdomLib v2.0.2
=================
A documented python library to consume the full pingdom API
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
=================
PingdomLib v2.0.1
PingdomLib v2.0.2
=================
Written by: Kenneth Wilke <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion pingdomlib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
=================
PingdomLib v2.0.1
PingdomLib v2.0.2
=================
Written by: Kenneth Wilke <[email protected]>
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
requests==2.2.1
wsgiref==0.1.2
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='PingdomLib',
version='2.0.1',
version='2.0.2',
author='Kenneth Wilke',
author_email='[email protected]',
packages=['pingdomlib'],
Expand All @@ -17,7 +17,6 @@
description='A documented python library to consume the full pingdom API',
long_description=open('README.txt').read(),
install_requires=[
"requests >= 2.2.1",
"wsgiref >= 0.1.2",
"requests >= 2.2.1"
],
)

0 comments on commit aaaadc3

Please sign in to comment.