diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fafbcfc61b..242e82a3240 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased ## Version 1.25.0/0.46b0 (2024-05-30) -- Remove references to [test] packages from eachdist.py script - ([#3947](https://github.com/open-telemetry/opentelemetry-python/pull/3947)) + - Fix class BoundedAttributes to have RLock rather than Lock ([#3859](https://github.com/open-telemetry/opentelemetry-python/pull/3859)) - Remove thread lock by loading RuntimeContext explicitly. diff --git a/scripts/eachdist.py b/scripts/eachdist.py index 5817b1f3ae6..be48f912db9 100755 --- a/scripts/eachdist.py +++ b/scripts/eachdist.py @@ -195,7 +195,6 @@ def setup_instparser(instparser): setup_instparser(instparser) instparser.add_argument("--editable", "-e", action="store_true") - instparser.add_argument("--with-test-deps", action="store_true") instparser.add_argument("--with-dev-deps", action="store_true") instparser.add_argument("--eager-upgrades", action="store_true")