Skip to content

Commit

Permalink
Merge pull request #4523 from wazuh/enhacement/3788-upgrade-windows-i…
Browse files Browse the repository at this point in the history
…t-ami

Upgrade py dependency version for wazuh-qa when Python is in version 3.11
  • Loading branch information
juliamagan authored Sep 18, 2023
2 parents 480d357 + 385b79d commit 7587ec3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Release report: TBD
### Fixed

- Enhancing the handling of authd and remoted simulators in case of restart failures ([#Wazuh-jenkins#3487](https:/wazuh/wazuh-qa/pull/4205)) \- (Tests)
- Fix py dependency version to install for Windows after the change to Python 3.11([#4523](https:/wazuh/wazuh-qa/pull/4523)) \- (Framework)

## [4.5.2] - TBD

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ numpy>=1.18.1
pandas>=1.1.5
pillow>=6.2.0; platform_system == "Linux" or platform_system == "Darwin" or platform_system=='Windows'
psutil>=5.6.6
py~=1.10.0
py~=1.10.0; platform_system != "Windows" or python_version <= "3.10"
py==1.11.0; platform_system == "Windows" and python_version >= "3.11"
pycryptodome>=3.9.8
pyOpenSSL==19.1.0
pytest-html==3.1.1
Expand Down

0 comments on commit 7587ec3

Please sign in to comment.