Skip to content

Commit

Permalink
Hold back request for temp fix lib docker
Browse files Browse the repository at this point in the history
  • Loading branch information
Dramelac committed May 21, 2024
1 parent ab42874 commit 7983ca2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion exegol/config/ConstantConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class ConstantConfig:
"""Constant parameters information"""
# Exegol Version
version: str = "4.3.3"
version: str = "4.3.4"

# Exegol documentation link
documentation: str = "https://exegol.rtfd.io/"
Expand Down
9 changes: 5 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
docker~=7.0.0
requests>=2.31.0
rich~=13.7.0
GitPython~=3.1.40
# Request holdback: temp fix for https://github.com/docker/docker-py/issues/3256
requests~=2.31.0
rich~=13.7.1
GitPython~=3.1.43
PyYAML>=6.0.1
argcomplete~=3.2.1
argcomplete~=3.3.0
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@
],
install_requires=[
'docker~=7.0.0',
'requests>=2.31.0',
'rich~=13.7.0',
'requests~=2.31.0',
'rich~=13.7.1',
'PyYAML',
'GitPython~=3.1.40',
'argcomplete~=3.2.1'
'GitPython~=3.1.43',
'argcomplete~=3.3.0'
],
packages=find_packages(exclude=["tests"]),
include_package_data=True,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_exegol.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == '4.3.3'
assert __version__ == '4.3.4'

0 comments on commit 7983ca2

Please sign in to comment.