Skip to content

Commit

Permalink
Fix third-party workflow (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood committed Jul 7, 2023
1 parent 8860c6a commit 7bb3f3f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/third_party.yml
Expand Up @@ -49,6 +49,10 @@ jobs:
uses: actions/checkout@v3
with:
repository: pydantic/pydantic
- name: Edit pydantic pyproject.toml
# pydantic's python-requires means pdm won't let us add typing-extensions-latest
# as a requirement unless we do this
run: sed -i 's/^requires-python = .*/requires-python = ">=3.8"/' pyproject.toml
- name: Checkout typing_extensions
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -316,6 +320,10 @@ jobs:
uses: actions/checkout@v3
with:
repository: python-attrs/cattrs
- name: Edit cattrs pyproject.toml
# cattrs's python-requires means pdm won't let us add typing-extensions-latest
# as a requirement unless we do this
run: sed -i 's/^requires-python = .*/requires-python = ">=3.8"/' pyproject.toml
- name: Checkout typing_extensions
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 7bb3f3f

Please sign in to comment.