Skip to content

Commit

Permalink
fix pyside6/shiboken6 dependency (avoid version 6.8.1.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
eneelo committed Jan 8, 2025
1 parent 4c6f0ee commit 2aa9505
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,14 @@ pywin32 = [ # MUST check the appropriate constraint
{version = "^308", markers = "platform_system == 'Windows'", python = ">=3.13"},
]
pyside6 = [
{version = ">=6.6.0", python = "<3.13"},
{version = ">=6.8.1", python = ">=3.13"}
# temporary fix: avoid pyside6 version 6.8.1.1, which misses it companion shiboken6 6.8.1.1 on pypi
# see issue 134, https://github.com/dnvgl/qats/issues/134
# may allow for version >=6.8.1 again when this has been fixed on pyside/shiboken side,
# e.g.:
# {version = "">=6.6.0,<6.9", python = "<3.13"},
# {version = "~=6.8.1", python = ">3.13"}
{version = ">=6.6.0,<=6.8.1", python = "<3.13"},
{version = "6.8.1", python = ">=3.13"}
]
importlib-resources = "*"

Expand Down

0 comments on commit 2aa9505

Please sign in to comment.