-
-
Notifications
You must be signed in to change notification settings - Fork 484
Fix CI, part 2 #1118
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
Fix CI, part 2 #1118
Conversation
@@ -20,7 +20,7 @@ def find_stub_files(name: str) -> List[str]: | |||
readme = f.read() | |||
|
|||
dependencies = [ | |||
"mypy>=0.930", | |||
"mypy>=0.930,<0.970", # TODO: remove after CI is fixed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This shouldn’t be necessary for the sake of CI. CI does pip install -r ./requirements.txt
, and requirements.txt
already includes mypy==0.961
(and also -e .[compatible-mypy]
which constrains mypy
to <0.970
).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any ideas how to fix it?
@@ -21,7 +21,7 @@ jobs: | |||
python-version: ${{ matrix.python-version }} | |||
- name: Install dependencies | |||
run: | | |||
pip install -U pip setuptools wheel | |||
pip install -U pip 'setuptools<64' wheel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the two other copies of this need to be patched too?
Refs #1108