-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The `typed-ast` package is being end-of-life'd soon. See python/typed_ast#179. Moreover, it is causing issues when building with Python 3.11+. See GaloisInc/cryptol#1491. Thankfully, `typed-ast` is no longer required if you use sufficiently new versions of `mypy` and Python. This patch raises the lower version bounds to make it possible to shed the `typed-ast` dependency entirely.
- Loading branch information
1 parent
2f19ac6
commit d00a3a0
Showing
3 changed files
with
46 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
steps: | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.7' | ||
python-version: '3.11' | ||
- uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.1.11 | ||
|
@@ -51,7 +51,9 @@ jobs: | |
poetry install | ||
- name: Typecheck python code | ||
working-directory: ./python | ||
run: poetry run mypy argo_client | ||
run: | | ||
poetry run mypy --install-types --non-interactive | ||
poetry run mypy argo_client | ||
- name: Build | ||
run: | | ||
cabal build all | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters