Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit dc3ce6b

Browse files
committed
Fix dependencies and pipelines
1 parent 87b891e commit dc3ce6b

File tree

13 files changed

+828
-914
lines changed

13 files changed

+828
-914
lines changed

.flake8

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[flake8]
2-
select = B,B9,C,DAR,E,F,N,RST,S,W
2+
select = B,B9,C,DAR,E,F,N,RST,W
33
ignore = E203,E501,W503,C901,B950
44
max-line-length = 80
55
max-complexity = 10
66
docstring-convention = google
7-
per-file-ignores = tests/*:S101, S105
87
; darglint
98
strictness = short

.github/workflows/constraints.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pip==20.3.3
2-
nox==2020.12.31
3-
nox-poetry==0.7.1
4-
poetry==1.1.4
5-
virtualenv==20.4.0
1+
pip==22.3
2+
nox==2022.8.7
3+
nox-poetry==1.0.1
4+
poetry==1.2.2
5+
virtualenv==20.16.6

.github/workflows/labeler.yml

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
- master
87

98
jobs:
109
labeler:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
jobs:
99
release:

.github/workflows/tests.yml

+33-44
Original file line numberDiff line numberDiff line change
@@ -12,85 +12,78 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
include:
15-
- { python-version: 3.9, os: ubuntu-latest, session: "pre-commit" }
16-
- { python-version: 3.9, os: ubuntu-latest, session: "safety" }
17-
- { python-version: 3.9, os: ubuntu-latest, session: "mypy" }
18-
- { python-version: 3.8, os: ubuntu-latest, session: "mypy" }
19-
- { python-version: 3.7, os: ubuntu-latest, session: "mypy" }
20-
- { python-version: 3.9, os: ubuntu-latest, session: "tests" }
21-
- { python-version: 3.8, os: ubuntu-latest, session: "tests" }
22-
- { python-version: 3.7, os: ubuntu-latest, session: "tests" }
23-
- { python-version: 3.9, os: windows-latest, session: "tests" }
24-
- { python-version: 3.9, os: macos-latest, session: "tests" }
25-
# - { python-version: 3.9, os: ubuntu-latest, session: "typeguard" }
26-
- { python-version: 3.9, os: ubuntu-latest, session: "xdoctest" }
27-
- { python-version: 3.9, os: ubuntu-latest, session: "docs-build" }
15+
- { python: "3.9", os: ubuntu-latest, session: "pre-commit" }
16+
- { python: "3.9", os: ubuntu-latest, session: "safety" }
17+
- { python: "3.9", os: ubuntu-latest, session: "mypy" }
18+
- { python: "3.8", os: ubuntu-latest, session: "mypy" }
19+
- { python: "3.7", os: ubuntu-latest, session: "mypy" }
20+
- { python: "3.9", os: ubuntu-latest, session: "tests" }
21+
- { python: "3.8", os: ubuntu-latest, session: "tests" }
22+
- { python: "3.7", os: ubuntu-latest, session: "tests" }
23+
- { python: "3.9", os: windows-latest, session: "tests" }
24+
- { python: "3.9", os: macos-latest, session: "tests" }
25+
# - { python: "3.9", os: ubuntu-latest, session: "typeguard" }
26+
- { python: "3.9", os: ubuntu-latest, session: "xdoctest" }
27+
- { python: "3.9", os: ubuntu-latest, session: "docs-build" }
2828

2929
env:
3030
NOXSESSION: ${{ matrix.session }}
3131

3232
steps:
3333
- name: Check out the repository
34-
uses: actions/checkout@v2.3.4
34+
uses: actions/checkout@v3
3535

36-
- name: Set up Python ${{ matrix.python-version }}
37-
uses: actions/setup-python@v2.2.1
36+
- name: Set up Python ${{ matrix.python }}
37+
uses: actions/setup-python@v4
3838
with:
39-
python-version: ${{ matrix.python-version }}
39+
python-version: ${{ matrix.python }}
4040

4141
- name: Upgrade pip
4242
run: |
4343
pip install --constraint=.github/workflows/constraints.txt pip
4444
pip --version
45-
4645
- name: Install Poetry
4746
run: |
48-
pip install --constraint=.github/workflows/constraints.txt poetry
47+
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry
4948
poetry --version
50-
5149
- name: Install Nox
5250
run: |
53-
pip install --constraint=.github/workflows/constraints.txt nox nox-poetry
51+
pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox
52+
pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry
5453
nox --version
55-
5654
- name: Compute pre-commit cache key
5755
if: matrix.session == 'pre-commit'
5856
id: pre-commit-cache
5957
shell: python
6058
run: |
6159
import hashlib
6260
import sys
63-
6461
python = "py{}.{}".format(*sys.version_info[:2])
6562
payload = sys.version.encode() + sys.executable.encode()
6663
digest = hashlib.sha256(payload).hexdigest()
6764
result = "${{ runner.os }}-{}-{}-pre-commit".format(python, digest[:8])
68-
6965
print("::set-output name=result::{}".format(result))
70-
7166
- name: Restore pre-commit cache
72-
uses: actions/cache@v2.1.3
67+
uses: actions/cache@v3
7368
if: matrix.session == 'pre-commit'
7469
with:
7570
path: ~/.cache/pre-commit
7671
key: ${{ steps.pre-commit-cache.outputs.result }}-${{ hashFiles('.pre-commit-config.yaml') }}
7772
restore-keys: |
7873
${{ steps.pre-commit-cache.outputs.result }}-
79-
8074
- name: Run Nox
8175
run: |
82-
nox --force-color --python=${{ matrix.python-version }}
83-
76+
nox --force-color --python=${{ matrix.python }}
8477
- name: Upload coverage data
8578
if: always() && matrix.session == 'tests'
86-
uses: "actions/upload-artifact@v2.2.2"
79+
uses: "actions/upload-artifact@v3"
8780
with:
8881
name: coverage-data
8982
path: ".coverage.*"
9083

9184
- name: Upload documentation
9285
if: matrix.session == 'docs-build'
93-
uses: actions/upload-artifact@v2.2.2
86+
uses: actions/upload-artifact@v3
9487
with:
9588
name: docs
9689
path: docs/_build
@@ -100,40 +93,36 @@ jobs:
10093
needs: tests
10194
steps:
10295
- name: Check out the repository
103-
uses: actions/checkout@v2.3.4
96+
uses: actions/checkout@v3
10497

105-
- name: Set up Python 3.9
106-
uses: actions/setup-python@v2.2.1
98+
- name: Set up Python
99+
uses: actions/setup-python@v4
107100
with:
108-
python-version: 3.9
101+
python-version: "3.9"
109102

110103
- name: Upgrade pip
111104
run: |
112105
pip install --constraint=.github/workflows/constraints.txt pip
113106
pip --version
114-
115107
- name: Install Poetry
116108
run: |
117-
pip install --constraint=.github/workflows/constraints.txt poetry
109+
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry
118110
poetry --version
119-
120111
- name: Install Nox
121112
run: |
122-
pip install --constraint=.github/workflows/constraints.txt nox nox-poetry
113+
pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox
114+
pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry
123115
nox --version
124-
125116
- name: Download coverage data
126-
uses: actions/download-artifact@v2.0.8
117+
uses: actions/download-artifact@v3
127118
with:
128119
name: coverage-data
129120

130121
- name: Combine coverage data and display human readable report
131122
run: |
132123
nox --force-color --session=coverage
133-
134124
- name: Create coverage report
135125
run: |
136126
nox --force-color --session=coverage -- xml
137-
138127
- name: Upload coverage report
139-
uses: codecov/codecov-action@v1.2.1
128+
uses: codecov/codecov-action@v3

.pre-commit-config.yaml

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
repos:
22
- repo: local
33
hooks:
4+
- id: bandit
5+
name: bandit
6+
entry: bandit
7+
language: system
8+
types: [python]
9+
require_serial: true
10+
args: ["-c", "bandit.yml"]
411
- id: black
512
name: black
613
entry: black
@@ -33,12 +40,6 @@ repos:
3340
language: system
3441
types: [python]
3542
require_serial: true
36-
- id: reorder-python-imports
37-
name: Reorder python imports
38-
entry: reorder-python-imports
39-
language: system
40-
types: [python]
41-
args: [--application-directories=src]
4243
- id: trailing-whitespace
4344
name: Trim Trailing Whitespace
4445
entry: trailing-whitespace-fixer

bandit.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
assert_used:
2+
skips: ["*/test_*.py"]

0 commit comments

Comments
 (0)