Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Before using DDTest, you must have **Datadog Test Optimization** already set up
Minimum supported library and runtime requirements:

- Ruby requires the `datadog-ci` gem **1.31.0** or higher.
- Python requires the `ddtrace` package **4.10.3** or higher and `pytest`.
- Python requires the `ddtrace` package **4.11.0** or higher and `pytest`.
- JavaScript requires the `dd-trace` package **5.111.0** or higher, Node.js, and
Comment thread
anmarchenko marked this conversation as resolved.
Jest.

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/circleci.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
- checkout
- run:
name: Install Python dependencies
command: python -m pip install -r requirements.txt "ddtrace>=4.10.3" pytest
command: python -m pip install -r requirements.txt "ddtrace>=4.11.0" pytest
- test-optimization-circleci-orb/autoinstrument:
languages: python
site: datadoghq.eu
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Replace each Ruby setup step with Python dependency installation:
python-version: "3.12"
cache: pip
- name: Install Python dependencies
run: python -m pip install -r requirements.txt "ddtrace>=4.10.3" pytest
run: python -m pip install -r requirements.txt "ddtrace>=4.11.0" pytest
```

Configure Datadog Test Optimization for Python:
Expand Down
4 changes: 2 additions & 2 deletions docs/upgrade-1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Before upgrading to 1.0, update CI jobs and custom integrations to consume the
Minimum supported library and runtime requirements:

- Ruby requires the `datadog-ci` gem 1.31.0 or higher.
- Python requires the `ddtrace` package 4.10.3 or higher and `pytest`.
- Python requires the `ddtrace` package 4.11.0 or higher and `pytest`.
- JavaScript requires the `dd-trace` package 5.111.0 or higher, Node.js, and
Comment thread
anmarchenko marked this conversation as resolved.
Jest.

Expand All @@ -27,7 +27,7 @@ these paths:
## Validation Checklist

1. Verify the Datadog Test Optimization library version for your platform:
`datadog-ci` 1.31.0 or higher for Ruby, or `ddtrace` 4.10.3 or higher for
`datadog-ci` 1.31.0 or higher for Ruby, or `ddtrace` 4.11.0 or higher for
Python, or `dd-trace` 5.111.0 or higher for JavaScript.
2. Remove references to legacy root plan paths from CI templates and custom scripts.
3. Run `ddtest plan` in CI.
Expand Down
Loading