-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update one fixture to PEP-621 style
pyproject.toml
So we have fixtures testing both the new and old style config.
- Loading branch information
Showing
3 changed files
with
22 additions
and
11 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
[project] | ||
name = "poetry-basic" | ||
version = "0.0.0" | ||
requires-python = ">=3.13" | ||
dependencies = [ | ||
"typing-extensions" | ||
] | ||
|
||
[tool.poetry] | ||
package-mode = false | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.13" | ||
typing-extensions = "*" | ||
|
||
# This group shouldn't be installed due to us passing `--only main`. | ||
[tool.poetry.group.test.dependencies] | ||
[tool.poetry.group.dev.dependencies] | ||
pytest = "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters