Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
Release History
===============

0.8.0
+++++

* Refine code style to comply with Python 3 (#232, #233)
* CI: Support Python 3.9 (#229)
* Logging: `CLILogging.configure` returns as early as possible (#228)

0.8.0rc2
++++++++

Expand Down
17 changes: 8 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
argcomplete==1.11.1
colorama==0.4.3
argcomplete==1.12.2
colorama==0.4.4
flake8==3.8.4
jmespath==0.9.5
mock==4.0.1
jmespath==0.10.0
mock==4.0.3
Pygments==2.7.4
pylint==2.6.0
Pygments==2.5.2
PyYAML==5.3.1
six==1.14.0
tabulate==0.8.6
pytest==6.2.2
PyYAML==5.4.1

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This requirements.txt is actually only used by tox. When knack is used by Azure CLI, only setup.py is honored.

Now sure if this will trigger issues like Azure/azure-cli#16650, so bump them anyway.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PyYAML is unpinned in #241.

tabulate==0.8.7
vcrpy==4.0.2
pytest==5.3.5
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = '0.8.0rc2'
VERSION = '0.8.0'

DEPENDENCIES = [
'argcomplete',
Expand Down