Skip to content

Commit f8ecaca

Browse files
fix: fix failing tests due to updated list of available pythons (#6561)
Co-authored-by: Randy Döring <[email protected]>
1 parent 44a89cb commit f8ecaca

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

Diff for: poetry.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ urllib3 = "^1.26.0"
7777
pre-commit = "^2.6"
7878

7979
[tool.poetry.group.test.dependencies]
80-
# TODO: remove as soon as poetry-core with poetry-core#476 is available
81-
poetry-core = { git = "https://github.com/dimbleby/poetry-core.git", branch = "canonicalize-extras" }
80+
# TODO: remove when bumping poetry-core to 1.3
81+
poetry-core = { git = "https://github.com/finswimmer/core.git", branch = "fix/available-pythons" }
8282
deepdiff = "^5.0"
8383
flatdict = "^4.0.1"
8484
httpretty = "^1.0"

Diff for: tests/masonry/builders/test_editable_builder.py

+1
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ def test_builder_installs_proper_files_for_standard_packages(
148148
Classifier: Programming Language :: Python :: 3.8
149149
Classifier: Programming Language :: Python :: 3.9
150150
Classifier: Programming Language :: Python :: 3.10
151+
Classifier: Programming Language :: Python :: 3.11
151152
Classifier: Topic :: Software Development :: Build Tools
152153
Classifier: Topic :: Software Development :: Libraries :: Python Modules
153154
Project-URL: Documentation, https://python-poetry.org/docs

Diff for: tests/test_factory.py

+1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ def test_create_poetry():
132132
"Programming Language :: Python :: 3.8",
133133
"Programming Language :: Python :: 3.9",
134134
"Programming Language :: Python :: 3.10",
135+
"Programming Language :: Python :: 3.11",
135136
"Topic :: Software Development :: Build Tools",
136137
"Topic :: Software Development :: Libraries :: Python Modules",
137138
]

0 commit comments

Comments
 (0)