Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
For the Spring 2025 Semester I have dropped support for Poetry and replaced it with Pipenv. The rationale being that Poetry is a tool for building Python packages and managing their dependencies, but none of my labs require that a Python package be built. Poetry was just being using for dependency management and, unfortunately, it gave students a lot of trouble because it didn't play well with the Docker dev container environment, and it seemed to have constant issues with its lock file. When Poetry 2.0 dropped the
poetry shell
command, that was the last straw for me. It actually made it harder to use and so it had to go.Pipenv doesn't build packages, but it does a great job of managing environments and it supports cloud environments that expect a requirements.txt file if needed, which is all I really needed. It also seems to play well with Docker and OpenShift Source 2 Image.
I've also removed Thunder Client this semester because it is no longer free so I can't afford to continue using it. I've replace it with a REST API Client that seems to have similar functionality.
Made the following changes:
poetry
withpipenv
in the GitHub Actionpyproject.toml
into thesetup.cfg
filejson
format of counter response