Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #993 from freyes/fix-syntax
#993 #### Description The walrus operator (`:=`) was introduced in Python 3.8, the use of it in the `2.9` branch breaks python 3.6 compatibility which is the version used in Ubuntu 18.04 (Bionic). https://docs.python.org/3/whatsnew/3.8.html#assignment-expressions #### QA Steps 1. Install python-libjuju in python 3.6 2. python3 -c "import juju.utils" ``` virtualenv -p /usr/bin/python3.6 /tmp/myvenv source /tmp/myvenv/bin/activate python3 setup.py install python3 -c "import juju.utils" ``` All CI tests need to pass. #### Notes & Discussion This regression was introduced by #975
- Loading branch information