Skip to content

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

Closed
wants to merge 2 commits into from
Closed

Fix CI, part 2 #1118

wants to merge 2 commits into from

Conversation

sobolevn
Copy link
Member

Refs #1108

@@ -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
Copy link
Contributor

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).

Copy link
Member Author

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
Copy link
Contributor

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?

@andersk
Copy link
Contributor

andersk commented Aug 25, 2022

I found two ways to get it working again: #1122 or #1123.

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

Successfully merging this pull request may close these issues.

2 participants