File tree 1 file changed +8
-0
lines changed 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 49
49
uses : actions/checkout@v3
50
50
with :
51
51
repository : pydantic/pydantic
52
+ - name : Edit pydantic pyproject.toml
53
+ # pydantic's python-requires means pdm won't let us add typing-extensions-latest
54
+ # as a requirement unless we do this
55
+ run : sed -i 's/^requires-python = .*/requires-python = ">=3.8"/' pyproject.toml
52
56
- name : Checkout typing_extensions
53
57
uses : actions/checkout@v3
54
58
with :
@@ -316,6 +320,10 @@ jobs:
316
320
uses : actions/checkout@v3
317
321
with :
318
322
repository : python-attrs/cattrs
323
+ - name : Edit cattrs pyproject.toml
324
+ # cattrs's python-requires means pdm won't let us add typing-extensions-latest
325
+ # as a requirement unless we do this
326
+ run : sed -i 's/^requires-python = .*/requires-python = ">=3.8"/' pyproject.toml
319
327
- name : Checkout typing_extensions
320
328
uses : actions/checkout@v3
321
329
with :
You can’t perform that action at this time.
0 commit comments