Skip to content

Commit

Permalink
Remove awacs as a hard dependency; ensure awacs>=0.8 otherwise (#1325)
Browse files Browse the repository at this point in the history
* Remove hard dependency on awacs
  Fixes #1324
* If awacs is installed, ensure its version is >= 0.8
  • Loading branch information
michael-k authored and markpeek committed Feb 19, 2019
1 parent 42041ba commit e60a9f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@

# ---- Need libraries installed by setup.py
cfn_flip>=1.0.2
awacs>=0.8
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def get_version():

install_requires=file_contents("requirements.txt"),
test_suite="tests",
tests_require=["awacs"],
extras_require={'policy': ['awacs']},
tests_require=["awacs>=0.8"],
extras_require={'policy': ['awacs>=0.8']},

use_2to3=True,
)

0 comments on commit e60a9f0

Please sign in to comment.