Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ all = [
[dependency-groups]
# Core optional dependencies
tests = [
"infrahub-testcontainers>=1.5.1",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Verify infrahub-testcontainers>=1.5.1 is compatible with Python 3.9 and 3.10.

The change removes the Python version constraint, making this dependency apply to all supported versions (Python 3.9+). Verify that infrahub-testcontainers>=1.5.1 is available on PyPI and confirmed to work with Python 3.9 and 3.10, especially given the PR note that earlier versions had compatibility issues.


🌐 Web query:

What is the latest version of infrahub-testcontainers and its Python version requirements?

💡 Result:

Latest version: 1.4.12 (released Oct 23, 2025). Python requirement: Requires Python >= 3.9 (classifiers list support for Python 3.9–3.13). [1]

Sources: [1] PyPI — infrahub-testcontainers project page (release 1.4.12).


Specify a valid version number for infrahub-testcontainers. Version 1.5.1 does not exist on PyPI.

The latest available version is 1.4.12 (released Oct 23, 2025), which already supports Python >= 3.9–3.13. The specified version 1.5.1 will cause installation failures. Either use the latest available version (1.4.12) or verify the intended version number if a newer release is expected.

🤖 Prompt for AI Agents
In pyproject.toml around line 75, the dependency pin
"infrahub-testcontainers>=1.5.1" references a non-existent PyPI release and will
break installs; change it to a valid release (for example use
"infrahub-testcontainers==1.4.12" or a compatible range like
"infrahub-testcontainers>=1.4.12,<1.5" if you want updates within the current
major line), or confirm and replace with the intended future version if a newer
release is expected.

"pytest",
"pytest-asyncio<0.23",
"pytest-clarity>=1.0.1",
"pytest-cov>=4.0.0",
"pytest-httpx>=0.30",
"pytest-xdist>=3.3.1",
"infrahub-testcontainers>=1.5.0; python_version>='3.12'",
]
lint = [
"yamllint",
Expand Down
Loading