-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix #7918 dependabot updater should respect poetry explicit source
- Loading branch information
Showing
8 changed files
with
131 additions
and
10 deletions.
There are no files selected for viewing
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
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
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
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
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
17 changes: 17 additions & 0 deletions
17
python/spec/fixtures/pyproject_files/extra_source_explicit.toml
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[tool.poetry] | ||
name = "PythonProjects" | ||
version = "2.0.0" | ||
homepage = "https://github.com/roghu/py3_projects" | ||
license = "MIT" | ||
readme = "README.md" | ||
authors = ["Dependabot <support@dependabot.com>"] | ||
description = "Various small python projects." | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
requests = "2.18.0" | ||
|
||
[[tool.poetry.source]] | ||
name = "custom" | ||
url = "https://some.internal.registry.com/pypi/" | ||
priority = "explicit" |
17 changes: 17 additions & 0 deletions
17
python/spec/fixtures/pyproject_files/extra_source_explicit_and_package_specify_source.toml
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[tool.poetry] | ||
name = "PythonProjects" | ||
version = "2.0.0" | ||
homepage = "https://github.com/roghu/py3_projects" | ||
license = "MIT" | ||
readme = "README.md" | ||
authors = ["Dependabot <support@dependabot.com>"] | ||
description = "Various small python projects." | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
requests = { version = "2.18.0", source = "custom" } | ||
|
||
[[tool.poetry.source]] | ||
name = "custom" | ||
url = "https://some.internal.registry.com/pypi/" | ||
priority = "explicit" |
12 changes: 12 additions & 0 deletions
12
python/spec/fixtures/pyproject_files/package_specify_source.toml
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[tool.poetry] | ||
name = "PoetryGroups" | ||
version = "2.0.0" | ||
homepage = "https://github.com/roghu/py3_projects" | ||
license = "MIT" | ||
readme = "README.md" | ||
authors = ["Dependabot <support@dependabot.com>"] | ||
description = "Various small python projects." | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10" | ||
black = {version="^22.12.0", source="custom"} |