Skip to content

Commit 45d84fe

Browse files
authored
Merge pull request #217 from ThePorgs/dev
Release 4.3.4
2 parents 87aa68d + 7983ca2 commit 45d84fe

8 files changed

+18
-25
lines changed

CONTRIBUTING.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
# Wrapper & images
1+
# Contributors documentation
2+
Check the full contributors (up-to-date) documentation here: https://exegol.readthedocs.io/en/dev/community/contributors.html
3+
4+
# Wrapper & images (legacy)
25
- the `master` branch is the stable version. Only Pull Requests are allowed on this branch.
36
- the `dev` branch is used for active development. This is the bleeding-edge version, but is sometimes not as stable as the `master` (depending on the development cycle).
4-
- the `Exegol` repository includes the exegol.py wrapper code base, and features a `exegol-docker-images` submodule tracking [Exegol-images](https://github.com/ThePorgs/Exegol-images).
7+
- the `Exegol` repository includes the exegol.py wrapper code base, and features a `exegol-docker-build` submodule tracking [Exegol-images](https://github.com/ThePorgs/Exegol-images).
58
- changes to the images/dockerfiles/tools/installs must be done on the [Exegol-images](https://github.com/ThePorgs/Exegol-images) repo.
69
- by default, the wrapper pulls the latest DockerHub pre-built image for the install and updates
710
- DockerHub automatic builds are configured as follows

TODO.md

-11
This file was deleted.

exegol/config/ConstantConfig.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class ConstantConfig:
66
"""Constant parameters information"""
77
# Exegol Version
8-
version: str = "4.3.3"
8+
version: str = "4.3.4"
99

1010
# Exegol documentation link
1111
documentation: str = "https://exegol.rtfd.io/"

requirements.txt

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
docker~=7.0.0
2-
requests>=2.31.0
3-
rich~=13.7.0
4-
GitPython~=3.1.40
2+
# Request holdback: temp fix for https://github.com/docker/docker-py/issues/3256
3+
requests~=2.31.0
4+
rich~=13.7.1
5+
GitPython~=3.1.43
56
PyYAML>=6.0.1
6-
argcomplete~=3.2.1
7+
argcomplete~=3.3.0

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@
5656
],
5757
install_requires=[
5858
'docker~=7.0.0',
59-
'requests>=2.31.0',
60-
'rich~=13.7.0',
59+
'requests~=2.31.0',
60+
'rich~=13.7.1',
6161
'PyYAML',
62-
'GitPython~=3.1.40',
63-
'argcomplete~=3.2.1'
62+
'GitPython~=3.1.43',
63+
'argcomplete~=3.3.0'
6464
],
6565
packages=find_packages(exclude=["tests"]),
6666
include_package_data=True,

tests/test_exegol.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == '4.3.3'
5+
assert __version__ == '4.3.4'

0 commit comments

Comments
 (0)