Update textual-dev, .gitignore .lock file, update pyproject.toml to latest poetry conventions #4
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.
The specified
textual
dependency was keeping textual waaaaaay back. I changed the dependency to be ontextual-dev
, which will pulltextual
along with it sotextual
doesn't get stuck. Sincetextual
's versions are0.xx.0
, once you pick anxx
it will never update due to the way Poetry handles semver.Added
poetry.lock
to .gitignore. In my experience, during development (e.g. before 1.0), it just holds things back unnecessarily and leads to dependencies on out of date libraries. Once you hit 1.0, sure, to make sure people are running the right mix, but before that it just makes for confusing conflicts with no real benefit and nasty surprises when people eventually install "the latest" version of something and breaks the world. I'd rather have that happen during development.I also added
ruff
since I prefer it for formatting. It's a dev only dependency, so it won't fatten any distribution.Also, moved the dev dependencies to Poetry's new location of
[tool.poetry.group.dev.dependencies]
wherepoetry install --group dev
, the "new, improved" way of specifying dev dependencies will put it.