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.
.github/workflows/validate.yaml
:XDG_CACHE_HOME
instead of messing withPIP_CACHE_DIR
and the variable. This simplifies caching quite a bit and also ensures caching works for poetry.extra-tasks
, so that poetry install works correctly.extra-tasks
so we don't get hit by rate limiting.docs/conf.py
:docs/developers.rst
anddocs/docs.rst
:docker-compose.yml
:POETRY_VIRTUALENVS_IN_PROJECT=1
so that the.venv
goes into a docker volume instead of going to emphemeral storage.Dockerfile.devcontainer
poetry.lock
poetry lock
after changes topyproject.toml
, most notable change is the stuff added to the dev Poetry dependency group is no longer optional.pyproject.toml
:networkx
as this was causing problems with tox, as tox was running pip install with'networkx<3.0.0,>=2.6.2; (python_version >= "3.7" and python_version < "3.8") and extra == "networkx"' 'networkx<3.0.0,>=2.8.8; (python_version >= "3.8" and python_version < "4.0") and extra == "networkx"'
and theextra == "networkx"
here would never be true.dev
poetry dependendcy group with everything that is needed for a sane development environment so thatpoetry install
gets you a sane dev environment.Taskfile.yml
:tox.ini
:-n
) on the command line as it is being set conditionally on python version indocs/conf.py
now.