-
-
Notifications
You must be signed in to change notification settings - Fork 611
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
CI fails on Windows against pip main branch #1671
Comments
I think removing the pip first and installing it by tox is better. In some places, this solution said for windows. I would like to know your opinion @atugushev. ${{ runner.os }}-
- name: Install tox
run: pip install tox
+ - name: Uninstall pip
+ if: ${{ matrix.os }} == Windows
+ run: python -m pip uninstall pip
+ # see https://github.com/jazzband/pip-tools/issues/1671
- name: Prepare test environment
run: tox --notest -p auto --parallel-live
- name: Test pip ${{ matrix.pip-version }} |
@mmdbalkhi thanks for the links. Let's try the solution. Would you like to open a PR? |
I was testing in my repository (it was mistakenly pushed to PR), I think the problem cannot be solved from the ci side but must be done through tox. @atugushev |
@atugushev Is this still true, I do not see any failure on CI. |
I'm seeing: see also #1697 |
It fails on install pip from git
pip install -e git+https://github.com/pypa/pip.git@main#egg=pip
:Links for additional context:
t64.exe
inpip._vendor.distlib
pypa/pip#11349The text was updated successfully, but these errors were encountered: