-
Notifications
You must be signed in to change notification settings - Fork 122
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
Build failing on Windows w python 3.7 and 3.8 #534
Comments
Could you try installing |
Similar to what's happening here I think? |
wow @henryiii that fixed the builds! see here it's now all green! thank you very much. Is this a quick with windows and the older versions of python? so it's good practice to just install virtualenv? i just couldn't figure out why it worked on all other platforms and versions. Many many thanks! |
I'm not sure what's broken with venv there, but virtualenv is faster and more up-to-date than venv (since venv is built-in, and virtualenv is the PyPI package it was somewhat based on). venv usually should work, but there are some rare cases where it's broken. I'm not sure if this is something we can improve (since we are just asking for a venv with pip). I do know we test on Windows with venv. |
This looks more like a GitHub Action issue to me. |
I stumbled onto this issue in configparser today (https://github.com/jaraco/configparser/actions/runs/5492378721/jobs/10009816108). I see the error message:
Indeed, setting the dependency to In the case of configparser, the issue seems to be that running
Oh, my instance may be a re-manifestation of pypa/pip#8931 possibly due to other changes in the config. I'll continue investigation in jaraco/configparser#67. |
Hi build maintainers,
If this is not the correct place to post please let me know. I'm running into an issue with building my package where build works great across versions of python on mac and linux but not on windows. specifically python 3.7 and 3.8 are failing on CI.
My CI workflow is here:
Essentially i'm setting up a test suite and want to run my tests on the installed package rather than the package files. And i'm using setupup_tools scm for the version string updates. It seems like it's failing when it tries to install the
venv
/ virtual environment. but i'm not sure why. I tried to reinstall build just in case something was off with the install and that didn't work. Many thanks for any guidance or direction here. i've searched online and through issues but it's a tricky failure to identify.The text was updated successfully, but these errors were encountered: