Skip to content

Commit

Permalink
Add support for python 3.10+ typing
Browse files Browse the repository at this point in the history
  • Loading branch information
tlconnor committed Oct 14, 2024
1 parent 98c1719 commit eb4bd8b
Show file tree
Hide file tree
Showing 6 changed files with 156 additions and 99 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.12

- name: Install dependencies
run: |
Expand All @@ -38,13 +38,13 @@ jobs:
- name: Run mypy
run: |
source venv/bin/activate
mypy hologram --ignore-missing-imports
mypy hologram --ignore-missing-imports --install-types --non-interactive
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']

steps:
- name: Checkout repository
Expand Down
Loading

0 comments on commit eb4bd8b

Please sign in to comment.