Skip to content

Commit

Permalink
Merge pull request #574 from briancurtin/pin_novaclient
Browse files Browse the repository at this point in the history
Pin novaclient to 2.27.0 or less
  • Loading branch information
briancurtin committed Sep 2, 2015
2 parents ff5c1c4 + e5d22a1 commit 90291c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions pyrax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
import six.moves.configparser as ConfigParser
import warnings

# Ignore UserWarnings. Currently we're getting warnings about novaclient.v1_1
# deprecations as UserWarning instead of DeprecationWarning (why?).
warnings.filterwarnings("ignore", ".*novaclient.v1_1 is deprecated.*")

# keyring is an optional import
try:
import keyring
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def run(self):
"Operating System :: OS Independent",
],
install_requires=[
"python-novaclient>=2.13.0",
"python-novaclient>=2.13.0,<=2.27.0",
"rackspace-novaclient",
"keyring",
"requests>=2.2.1",
Expand Down

0 comments on commit 90291c3

Please sign in to comment.