Skip to content

Commit

Permalink
Merge pull request #217 from ThePorgs/dev
Browse files Browse the repository at this point in the history
Release 4.3.4
  • Loading branch information
Dramelac authored May 21, 2024
2 parents 87aa68d + 7983ca2 commit 45d84fe
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 25 deletions.
7 changes: 5 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Wrapper & images
# Contributors documentation
Check the full contributors (up-to-date) documentation here: https://exegol.readthedocs.io/en/dev/community/contributors.html

# Wrapper & images (legacy)
- the `master` branch is the stable version. Only Pull Requests are allowed on this branch.
- 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).
- 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).
- 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).
- changes to the images/dockerfiles/tools/installs must be done on the [Exegol-images](https://github.com/ThePorgs/Exegol-images) repo.
- by default, the wrapper pulls the latest DockerHub pre-built image for the install and updates
- DockerHub automatic builds are configured as follows
Expand Down
11 changes: 0 additions & 11 deletions TODO.md

This file was deleted.

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 45d84fe

Please sign in to comment.