Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1e7355b

Browse files
authoredJul 24, 2023
Merge pull request #322 from networktocode/develop
1.5.0 release
2 parents 26180f6 + d38a038 commit 1e7355b

File tree

87 files changed

+5899
-1620
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+5899
-1620
lines changed
 

‎.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: "pip"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
allow:
9+
- dependency-type: "direct"

‎.github/workflows/ci.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
uses: "actions/checkout@v2"
1818
- name: "Setup environment"
1919
uses: "networktocode/gh-action-setup-poetry-environment@v2"
20+
with:
21+
python-version: "3.11"
2022
- name: "Linting: black"
2123
run: "poetry run invoke black"
2224
bandit:
@@ -28,6 +30,8 @@ jobs:
2830
uses: "actions/checkout@v2"
2931
- name: "Setup environment"
3032
uses: "networktocode/gh-action-setup-poetry-environment@v2"
33+
with:
34+
python-version: "3.11"
3135
- name: "Linting: bandit"
3236
run: "poetry run invoke bandit"
3337
needs:
@@ -41,6 +45,8 @@ jobs:
4145
uses: "actions/checkout@v2"
4246
- name: "Setup environment"
4347
uses: "networktocode/gh-action-setup-poetry-environment@v2"
48+
with:
49+
python-version: "3.11"
4450
- name: "Type-Hints: mypy"
4551
run: "poetry run invoke mypy"
4652
needs:
@@ -54,6 +60,8 @@ jobs:
5460
uses: "actions/checkout@v2"
5561
- name: "Setup environment"
5662
uses: "networktocode/gh-action-setup-poetry-environment@v2"
63+
with:
64+
python-version: "3.11"
5765
- name: "Linting: pydocstyle"
5866
run: "poetry run invoke pydocstyle"
5967
needs:
@@ -67,6 +75,8 @@ jobs:
6775
uses: "actions/checkout@v2"
6876
- name: "Setup environment"
6977
uses: "networktocode/gh-action-setup-poetry-environment@v2"
78+
with:
79+
python-version: "3.11"
7080
- name: "Linting: flake8"
7181
run: "poetry run invoke flake8"
7282
needs:
@@ -80,6 +90,8 @@ jobs:
8090
uses: "actions/checkout@v2"
8191
- name: "Setup environment"
8292
uses: "networktocode/gh-action-setup-poetry-environment@v2"
93+
with:
94+
python-version: "3.11"
8395
- name: "Linting: yamllint"
8496
run: "poetry run invoke yamllint"
8597
needs:
@@ -88,7 +100,7 @@ jobs:
88100
strategy:
89101
fail-fast: true
90102
matrix:
91-
python-version: ["3.7", "3.8", "3.9", "3.10"]
103+
python-version: ["3.8", "3.9", "3.10", "3.11"]
92104
runs-on: "ubuntu-20.04"
93105
env:
94106
PYTHON_VER: "${{ matrix.python-version }}"
@@ -125,7 +137,7 @@ jobs:
125137
strategy:
126138
fail-fast: true
127139
matrix:
128-
python-version: ["3.7"]
140+
python-version: ["3.11"]
129141
env:
130142
PYTHON_VER: "${{ matrix.python-version }}"
131143
steps:
@@ -161,7 +173,7 @@ jobs:
161173
strategy:
162174
fail-fast: true
163175
matrix:
164-
python-version: ["3.7", "3.8", "3.9", "3.10"]
176+
python-version: ["3.8", "3.9", "3.10", "3.11"]
165177
runs-on: "ubuntu-20.04"
166178
env:
167179
PYTHON_VER: "${{ matrix.python-version }}"
@@ -208,7 +220,7 @@ jobs:
208220
- name: "Set up Python"
209221
uses: "actions/setup-python@v2"
210222
with:
211-
python-version: "3.9"
223+
python-version: "3.11"
212224
- name: "Install Python Packages"
213225
run: "pip install poetry"
214226
- name: "Set env"
@@ -237,7 +249,7 @@ jobs:
237249
- name: "Set up Python"
238250
uses: "actions/setup-python@v2"
239251
with:
240-
python-version: "3.9"
252+
python-version: "3.11"
241253
- name: "Install Python Packages"
242254
run: "pip install poetry"
243255
- name: "Set env"

0 commit comments

Comments
 (0)