Skip to content

Commit

Permalink
Fix #78: Setup now requires httpx != 0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsystem committed Dec 5, 2024
1 parent 22213f7 commit 85b7537
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='lightkube',
version="0.15.5",
version="0.15.6",
description='Lightweight kubernetes client library',
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
Expand All @@ -15,7 +15,7 @@
package_data={'lightkube': ['py.typed']},
install_requires=[
'lightkube-models >= 1.15.12.0',
'httpx >= 0.24.0',
'httpx >= 0.24.0, != 0.28.0, < 1.0.0',
'PyYAML'
],
extras_require={
Expand Down

0 comments on commit 85b7537

Please sign in to comment.