Skip to content

Commit

Permalink
Add official support for Python 3.9 & 3.10 (#47)
Browse files Browse the repository at this point in the history
* Import Mapping from the new appropriate location

* Add typing-extensions to allow dev w/Python 3.6

* Add official support/testing for Python 3.9 & 3.10
  • Loading branch information
tarkatronic authored Dec 7, 2021
1 parent 7c5d98e commit c4cfd80
Show file tree
Hide file tree
Showing 5 changed files with 205 additions and 180 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ 3.6, 3.7, 3.8 ]
python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10" ]
exclude:
- platform: macos-latest
python-version: 3.6
Expand All @@ -28,7 +28,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand Down
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ docutils = "*"
responses = "*"
atomicwrites = "*"
importlib-metadata = "*"
typing-extensions = "*"

[packages]
aws-okta-processor = {path = ".", editable=true}
Expand Down
Loading

0 comments on commit c4cfd80

Please sign in to comment.