Skip to content

Commit

Permalink
Update codeql list to properly recognize python 3.10
Browse files Browse the repository at this point in the history
Actually include a line that was supposed to be in 0.1.29
  • Loading branch information
JacobCallahan committed Nov 3, 2021
1 parent 63f2bed commit c8dac6a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, 3.10]
python-version: ["3.8", "3.9", "3.10"]

steps:
- name: Checkout repository
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
History
=======

0.1.29 (2021-11-03)
------------------

+ Actually include a line that was supposed to be in 0.1.28

0.1.28 (2021-11-03)
------------------

Expand Down
1 change: 1 addition & 0 deletions broker/broker.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ class VMBroker:
NotImplementedError = exceptions.NotImplementedError

def __init__(self, **kwargs):
kwargs = helpers.resolve_file_args(kwargs)
self._hosts = kwargs.pop("hosts", [])
self.host_classes = {"host": Host}
# if a nick was specified, pull in the resolved arguments
Expand Down

0 comments on commit c8dac6a

Please sign in to comment.