Skip to content

Commit

Permalink
Merge pull request #653 from hemanthnakkina/juju3_fix
Browse files Browse the repository at this point in the history
Unpin python-libjuju based on environment variable
  • Loading branch information
freyes authored Apr 1, 2024
2 parents 4089cc3 + af7eea9 commit b22c2ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,11 @@

# https://github.com/go-macaroon-bakery/py-macaroon-bakery/issues/94
'macaroonbakery != 1.3.3',
'juju<3.0.0',
]
if os.environ.get("TEST_JUJU3"):
install_require.append('juju')
else:
install_require.append('juju<3.0.0')

tests_require = [
'tox >= 2.3.1',
Expand Down

0 comments on commit b22c2ee

Please sign in to comment.