Skip to content

Commit

Permalink
Bump setuptools from 59.6.0 to 65.5.1 in /libbeat/tests/system (#34389)
Browse files Browse the repository at this point in the history
* Bump setuptools from 59.6.0 to 65.5.1 in /libbeat/tests/system

Bumps [setuptools](https://github.com/pypa/setuptools) from 59.6.0 to 65.5.1.
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/CHANGES.rst)
- [Commits](pypa/setuptools@v59.6.0...v65.5.1)

---
updated-dependencies:
- dependency-name: setuptools
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Filter out distutil deprecation warnings.

The compose package needs to be updated to get rid of this, and there
are no newer versions yet. The only option is to filter this warning.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Craig MacKenzie <[email protected]>
  • Loading branch information
dependabot[bot] and cmacknz authored Jan 31, 2023
1 parent b5226ae commit 1046652
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libbeat/tests/system/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ PyYAML==5.4.1
redis==2.10.6
requests==2.25.1
semver==2.8.1
setuptools==59.6.0
setuptools==65.5.1
six==1.15.0
stomp.py==4.1.22
termcolor==1.1.0
Expand Down
2 changes: 1 addition & 1 deletion libbeat/tests/system/requirements_aix.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ PyYAML==5.4.1
redis==2.10.6
requests==2.25.1
semver==2.8.1
setuptools==59.6.0
setuptools==65.5.1
six==1.15.0
stomp.py==4.1.22
termcolor==1.1.0
Expand Down
5 changes: 4 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,8 @@ timeout_func_only = True

# Fail on deprecation warnings
filterwarnings =
error::DeprecationWarning
error::yaml.YAMLLoadWarning
error::DeprecationWarning
# Ignore distutil Version class deprecation in the compose package until it can be upgraded not to use them.
ignore:distutils Version classes are deprecated. Use packaging.version instead.:DeprecationWarning:.*compose.*
ignore:distutils Version classes are deprecated. Use packaging.version instead.:DeprecationWarning:.*docker.*

0 comments on commit 1046652

Please sign in to comment.