Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run GitHub Actions tests on current versions of Python #832

Closed
wants to merge 3 commits into from

Conversation

cclauss
Copy link
Contributor

@cclauss cclauss commented Apr 24, 2024

Pre-submission checklist

  • I've ran the linters locally and fixed lint errors related to the files I modified in this PR. You can install the linters by running pip install -r requirements-dev.txt && pre-commit install
  • pre-commit run

Summary

Related to:

PEP 604 – Allow writing union types as X | Y -- https://peps.python.org/pep-0604

   File "/home/runner/work/pyre-check/pyre-check/client/language_server/protocol.py", line 365, in Diagnostic
    code: Optional[int | str] = None
TypeError: unsupported operand type(s) for |: 'type' and 'type'

On Python < 3.10 the tests are failing on PEP 604 type annotations which will be enforced by ruff rule UP007.

On Python < 3.10 the source file must start with from __future__ import annotations to be able to use PEP 604 syntax.

Test Plan

@facebook-github-bot
Copy link
Contributor

@migeed-z has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator.

@cclauss
Copy link
Contributor Author

cclauss commented Apr 24, 2024

Perhaps PyPy should be moved to a separate pull request because that GitHub Action test has been running for 3+ hours.

.github/workflows/tests.yml Outdated Show resolved Hide resolved
@facebook-github-bot
Copy link
Contributor

@migeed-z has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator.

facebook-github-bot pushed a commit that referenced this pull request Apr 25, 2024
…833)

Summary:
**Pre-submission checklist**
- [x] I've ran the linters locally and fixed lint errors related to the files I modified in this PR. You can install the linters by running `pip install -r requirements-dev.txt && pre-commit install`
- [x] `pre-commit run`

```diff
 repos:
 - repo: https://github.com/pycqa/flake8
-  rev: 4.0.1
+  rev: 7.0.0
   hooks:
   - id: flake8
```
As discussed at:
* PyCQA/flake8#1701

Pull Request resolved: #833

Test Plan:
For test failures on Python < 3.10 see:
* #832

Reviewed By: grievejia

Differential Revision: D56535569

Pulled By: migeed-z

fbshipit-source-id: 576cccafeca06e6ebe1290bcd115c53e4a07fbc2
@facebook-github-bot
Copy link
Contributor

@migeed-z merged this pull request in 714c268.

@cclauss
Copy link
Contributor Author

cclauss commented Apr 26, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants