Skip to content

Commit 2c85525

Browse files
authoredJun 13, 2021
Merge pull request #63 from djpugh/fix/types-3.9
2 parents 8e62c95 + 4120753 commit 2c85525

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed
 

‎.github/workflows/pipeline.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
pip install tox
2727
- name: Lint
2828
run: tox -e lint
29-
29+
3030
security:
3131
name: Security Lint
3232
runs-on: windows-latest
@@ -65,7 +65,7 @@ jobs:
6565
- ubuntu
6666
- windows
6767
- macos
68-
py:
68+
py:
6969
- 3.6
7070
- 3.7
7171
- 3.8
@@ -158,7 +158,7 @@ jobs:
158158
run: |
159159
python -m pip install --upgrade pip
160160
pip install tox
161-
161+
162162
- name: Build fastapi_aad_auth
163163
run: tox -e build -vvv
164164

@@ -208,7 +208,7 @@ jobs:
208208
- ubuntu
209209
- windows
210210
- macos
211-
py:
211+
py:
212212
- 3.6
213213
- 3.7
214214
- 3.8
@@ -238,7 +238,7 @@ jobs:
238238
automerge:
239239
if: github.event_name == 'pull_request'
240240
runs-on: ubuntu-latest
241-
needs:
241+
needs:
242242
- lint
243243
- security
244244
- types
@@ -263,7 +263,7 @@ jobs:
263263
if: (github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) || github.event_name == 'release'
264264
name: Publish Package
265265
runs-on: ubuntu-latest
266-
needs:
266+
needs:
267267
- lint
268268
- security
269269
- types
@@ -299,7 +299,7 @@ jobs:
299299
if: (github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && !(contains(github.ref, 'gh-pages') || contains(github.ref, 'docs')) ) || github.event_name == 'release'
300300
name: Publish Docs
301301
runs-on: ubuntu-latest
302-
needs:
302+
needs:
303303
- docs
304304
- publish-package
305305
steps:

‎tox.ini

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ deps =
1717
test,develop: tox
1818
cq,develop: pylint
1919
types,develop: mypy
20+
types,develop: types-requests
21+
types,develop: types-pkg_resources
2022
types,develop: lxml
2123
security,develop: bandit
2224
docs,develop: sphinx

0 commit comments

Comments
 (0)
Please sign in to comment.