Skip to content

Commit 01dd16a

Browse files
authored
Update dependencies (#7)
* Fix nornir url in README.md * update dependencies * Blackify, Use macOS-latest in workflow * Bump version
1 parent a06f646 commit 01dd16a

File tree

7 files changed

+86
-201
lines changed

7 files changed

+86
-201
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
matrix:
4141
python-version: ["3.8", "3.9", "3.10"]
42-
platform: [ubuntu-latest, macOS-10.15, windows-latest]
42+
platform: [ubuntu-latest, macOS-latest, windows-latest]
4343
runs-on: ${{ matrix.platform }}
4444
steps:
4545
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# nornir_http
22

3-
Collection of simple plugins for [nornir](github.com/nornir-automation/nornir/)
3+
Simple HTTP Task plugins for [nornir](https://github.com/nornir-automation/nornir/)
44

55

66
## Install

nornir_http/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.2" # From Makefile
1+
__version__ = "0.1.3" # From Makefile

nornir_http/result.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,5 @@ def __init__(
3030
failed: bool = False,
3131
**kwargs: Any
3232
):
33-
3433
super().__init__(host=host, result=result, failed=failed, **kwargs)
3534
self.response = response

0 commit comments

Comments
 (0)