Skip to content

Commit b5101d8

Browse files
committed
fix PyPI package rename
1 parent fc0a46c commit b5101d8

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

Dockerfiles/agent-ot/Dockerfile.agent-otel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ RUN go version && \
6767
RUN python3 -m venv venv && \
6868
. venv/bin/activate && \
6969
pip install --upgrade pip && \
70-
pip install datadog-agent-dev && \
70+
pip install dda && \
7171
dda self dep sync -f legacy-tasks
7272

7373
# Copy the manifest file

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ and development, is located under [the docs directory](docs) of the present repo
2121
To build the Agent you need:
2222
* [Go](https://golang.org/doc/install) 1.23 or later. You'll also need to set your `$GOPATH` and have `$GOPATH/bin` in your path.
2323
* Python 3.11+ along with development libraries for tooling. You will also need Python 2.7 if you are building the Agent with Python 2 support.
24-
* Python dependencies. You may install these with `pip install datadog-agent-dev`.
24+
* Python dependencies. You may install these with `pip install dda`.
2525
* CMake version 3.15 or later and a C++ compiler
2626

2727
**Note:** you may want to use a python virtual environment to avoid polluting your

docs/cloud-workload-security/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The templates are written in [Jinja2](https://jinja.palletsprojects.com/en/3.0.x
107107

108108
- Golang (see `go.mod` for the minimal version supported)
109109
- Python, install dependencies with:
110-
- `pip install datadog-agent-dev`
110+
- `pip install dda`
111111
- `pip install -r docs/cloud-workload-security/scripts/requirements-docs.txt`
112112

113113

docs/public/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ After downloading the archive corresponding to your platform and architecture, e
8888
dda is available on PyPI and can be installed with [pip](https://github.com/pypa/pip).
8989

9090
```
91-
pip install datadog-agent-dev
91+
pip install dda
9292
```
9393

9494
!!! warning

tasks/show_linters_issues/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The version of `go` and `golangci-lint` can have a big impact on the output of t
1515
- Your `golangci-lint` version is identical to the CI's (look for `golangci-lint` in the `internal/tools/go.mod` file).
1616
- You did not install `go` using `brew` (`which go` path shouldn't contain `homebrew`). If it does, please install `go` for example using `gimme`.
1717
- Use `python >= 3.9.0`.
18-
- Install the requirements with `python3 -m pip install datadog-agent-dev`.
18+
- Install the requirements with `python3 -m pip install dda`.
1919
- Clear you `golangci-lint` cache (`golangci-lint cache clean`) and your `go mod` cache (`go clean -modcache`).
2020
- Install the tools (`dda inv -e install-tools`) and the dependencies (`dda inv -e deps`).
2121

tasks/winbuildscripts/Generate-Chocolatey-Package.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ if ($InstallDeps) {
4949
# Install chocolatey
5050
$env:chocolateyUseWindowsCompression = 'true'; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
5151
# Install dev tools, including invoke
52-
pip3 install datadog-agent-dev
52+
pip3 install dda
5353
dda self dep sync -f legacy-tasks
5454
}
5555

tasks/winbuildscripts/Update-Winget.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $ErrorActionPreference = 'Stop';
22
Set-Location c:\mnt
33

44
# Install dev tools, including invoke
5-
pip3 install datadog-agent-dev
5+
pip3 install dda
66
dda self dep sync -f legacy-tasks
77

88
# Update the repo

tasks/winbuildscripts/common.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ function Expand-ModCache() {
133133

134134
function Install-Deps() {
135135
Write-Host "Installing python requirements"
136-
pip3.exe install datadog-agent-dev
136+
pip3.exe install dda
137137
dda self dep sync -f legacy-tasks
138138
if ($LASTEXITCODE -ne 0) {
139139
Write-Error "Failed to install python requirements"

tasks/winbuildscripts/secagent.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $Env:Python3_ROOT_DIR=$Env:TEST_EMBEDDED_PY3
77
if ($Env:TARGET_ARCH -eq "x64") {
88
& ridk enable
99
}
10-
& $Env:Python3_ROOT_DIR\python.exe -m pip install datadog-agent-dev
10+
& $Env:Python3_ROOT_DIR\python.exe -m pip install dda
1111
& $Env:Python3_ROOT_DIR\python.exe -m dda self dep sync -f legacy-tasks
1212

1313
$PROBE_BUILD_ROOT=(Get-Location).Path

tasks/winbuildscripts/sysprobe.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $Env:Python2_ROOT_DIR=$Env:TEST_EMBEDDED_PY2
55
$Env:Python3_ROOT_DIR=$Env:TEST_EMBEDDED_PY3
66

77
& ridk enable
8-
& $Env:Python3_ROOT_DIR\python.exe -m pip install datadog-agent-dev
8+
& $Env:Python3_ROOT_DIR\python.exe -m pip install dda
99
& $Env:Python3_ROOT_DIR\python.exe -m dda self dep sync -f legacy-tasks
1010

1111
$PROBE_BUILD_ROOT=(Get-Location).Path

0 commit comments

Comments
 (0)