Skip to content

Commit 421e9a6

Browse files
authored
ci: Pin versions to speed up poetry deps resolution (#806)
1 parent ea2604e commit 421e9a6

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Diff for: tests/poetry/pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ description = ""
55
authors = ["Your Name <[email protected]>"]
66

77
[tool.poetry.dependencies]
8-
python = "^3.6"
9-
Flask = "^1.0"
8+
python = "^3.7"
9+
Flask = "2.0"
1010
bottle = {git = "https://[email protected]/bottlepy/bottle.git", tag = "0.12.16"}
11-
boto3 = "^1.9"
11+
boto3 = "1.29.6"
1212

1313
[tool.poetry.dev-dependencies]
1414

1515
[build-system]
16-
requires = ["poetry>=0.12"]
16+
requires = ["poetry"]
1717
build-backend = "poetry.masonry.api"

Diff for: tests/poetry_individually/module1/pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ description = ""
55
authors = ["Your Name <[email protected]>"]
66

77
[tool.poetry.dependencies]
8-
python = "^3.6"
9-
Flask = "^1.0"
8+
python = "^3.7"
9+
Flask = "2.0"
1010
bottle = {git = "https://[email protected]/bottlepy/bottle.git", tag = "0.12.16"}
11-
boto3 = "^1.9"
11+
boto3 = "1.29.6"
1212

1313
[tool.poetry.dev-dependencies]
1414

1515
[build-system]
16-
requires = ["poetry>=0.12"]
16+
requires = ["poetry"]
1717
build-backend = "poetry.masonry.api"

Diff for: tests/poetry_packages/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ description = ""
55
authors = ["Your Name <[email protected]>"]
66

77
[tool.poetry.dependencies]
8-
python = "^3.6"
9-
Flask = "^1.0"
8+
python = "^3.7"
9+
Flask = "2.0"
1010

1111
[tool.poetry.group.custom1.dependencies]
1212
bottle = {git = "https://[email protected]/bottlepy/bottle.git", tag = "0.12.16"}
1313

1414
[tool.poetry.group.custom2.dependencies]
15-
boto3 = "^1.9"
15+
boto3 = "1.29.6"
1616

1717
[build-system]
1818
requires = ["poetry-core"]

0 commit comments

Comments
 (0)