-
Notifications
You must be signed in to change notification settings - Fork 173
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
attempt to fix tox on bcrypt CI #953
Conversation
82fdbf4
to
cf07080
Compare
looks like maybe tox.ini needs to be updated? |
cf07080
to
e0c48f4
Compare
I think tox might need an update too now that virtualenv knows about |
e0c48f4
to
8ab5f48
Compare
That seems to have fixed it. I looked through a few of the jobs and it seems to be discovering the correct python just by finding the first one in $PATH. |
.github/workflows/ci.yml
Outdated
- {VERSION: "3.8", TOXENV: "py38"} | ||
- {VERSION: "3.13", TOXENV: "py313"} | ||
- {VERSION: "3.13t", TOXENV: "py313"} | ||
- {VERSION: "3.13t", TOXENV: "py313t"} |
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.
These TOXENVs aren't used anymore, right?
env: | ||
TOXENV: ${{ matrix.PYTHON.TOXENV }} |
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.
but without this, the toxenv for mypy, pep8, packaging isn't respected :-/
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.
Ugh, sorry for all the back-and-forth. Should be fixed now, I think.
I also noticed that the information about these environments wasn't showing up in the actions environment name - so I added it back.
99792f2
to
236a006
Compare
FYI, I got annoyed enough that I submitted #954 to switch us to nox. Thanks for poking and debugging this! But assuming nox works, I think that's probably a better direction for us. |
Fair enough - feel free to merge this if that turns out to have issues. Doesn't look like it though. |
Thanks so much for your continued contributions! What rotten luck that this broke the day after it was merged :-) |
No description provided.