Skip to content

Commit

Permalink
Ugh, another typing-extensions fix (#1314)
Browse files Browse the repository at this point in the history
  • Loading branch information
sydney-runkle authored Jun 3, 2024
1 parent 51ac71a commit 77f2b69
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,9 @@ jobs:
python-version: '3.11'
architecture: ${{ matrix.python-architecture || 'x64' }}

- run: pip install -U twine 'ruff==0.1.3' typing_extensions
- run: pip install -U twine 'ruff==0.1.3'
# TODO: remove manual override for typing_extensions once a version newer than 4.12.1 is released
- run: pip install -U git+https://github.com/python/typing_extensions@main

# generate self-schema now, so we don't have to do so inside docker in maturin build
- run: python generate_self_schema.py
Expand Down Expand Up @@ -530,7 +532,9 @@ jobs:
with:
components: llvm-tools

- run: pip install -U 'ruff==0.1.3' typing_extensions
- run: pip install -U 'ruff==0.1.3'
# TODO: remove manual override for typing_extensions once a version newer than 4.12.1 is released
- run: pip install -U git+https://github.com/python/typing_extensions@main

# generate self-schema now, so we don't have to do so inside docker in maturin build
- run: python generate_self_schema.py
Expand Down

0 comments on commit 77f2b69

Please sign in to comment.