Skip to content

Commit 6dcb677

Browse files
author
Arjun Sreedharan
authored
1 parent 31a69d0 commit 6dcb677

10 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @paketo-community/python-maintainers
1+
* @paketo-buildpacks/python-maintainers

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The Paketo Pip Install Buildpack is a Cloud Native Buildpack that installs
33
packages using pip and makes it available to the application.
44

55
The buildpack is published for consumption at
6-
`gcr.io/paketo-community/pip-install` and `paketocommunity/pip-install`.
6+
`gcr.io/paketo-buildpacks/pip-install` and `paketobuildpacks/pip-install`.
77

88
## Behavior
99
This buildpack participates if `requirements.txt` exists at the root the app.

build_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"github.com/paketo-buildpacks/packit"
1414
"github.com/paketo-buildpacks/packit/chronos"
1515
"github.com/paketo-buildpacks/packit/scribe"
16-
pipinstall "github.com/paketo-community/pip-install"
17-
"github.com/paketo-community/pip-install/fakes"
16+
pipinstall "github.com/paketo-buildpacks/pip-install"
17+
"github.com/paketo-buildpacks/pip-install/fakes"
1818
"github.com/sclevine/spec"
1919

2020
. "github.com/onsi/gomega"

buildpack.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
api = "0.5"
22

33
[buildpack]
4-
id = "paketo-community/pip-install"
4+
id = "paketo-buildpacks/pip-install"
55
name = "Paketo Pip Install Buildpack"
66

77
[metadata]

constants.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ package pipinstall
55
const SitePackages = "site-packages"
66

77
// CPython is the name of the python runtime dependency provided by the CPython
8-
// buildpack: https://github.com/paketo-community/cpython.
8+
// buildpack: https://github.com/paketo-buildpacks/cpython.
99
const CPython = "cpython"
1010

1111
// Pip is the name of the dependency provided by the Pip buildpack:
12-
// https://github.com/paketo-community/pip.
12+
// https://github.com/paketo-buildpacks/pip.
1313
const Pip = "pip"
1414

1515
// The layer name for packages layer. This layer is where dependencies are

detect_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"testing"
88

99
"github.com/paketo-buildpacks/packit"
10-
pipinstall "github.com/paketo-community/pip-install"
10+
pipinstall "github.com/paketo-buildpacks/pip-install"
1111
"github.com/sclevine/spec"
1212

1313
. "github.com/onsi/gomega"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/paketo-community/pip-install
1+
module github.com/paketo-buildpacks/pip-install
22

33
go 1.16
44

install_process_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"testing"
1010

1111
"github.com/paketo-buildpacks/packit/scribe"
12-
pipinstall "github.com/paketo-community/pip-install"
13-
"github.com/paketo-community/pip-install/fakes"
12+
pipinstall "github.com/paketo-buildpacks/pip-install"
13+
"github.com/paketo-buildpacks/pip-install/fakes"
1414
"github.com/sclevine/spec"
1515

1616
. "github.com/onsi/gomega"

integration.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"cpython":"github.com/paketo-community/cpython",
3-
"pip":"github.com/paketo-community/pip",
2+
"cpython":"github.com/paketo-buildpacks/cpython",
3+
"pip":"github.com/paketo-buildpacks/pip",
44
"build-plan":"github.com/paketo-community/build-plan"
55
}

run/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/paketo-buildpacks/packit/draft"
99
"github.com/paketo-buildpacks/packit/pexec"
1010
"github.com/paketo-buildpacks/packit/scribe"
11-
pipinstall "github.com/paketo-community/pip-install"
11+
pipinstall "github.com/paketo-buildpacks/pip-install"
1212
)
1313

1414
func main() {

0 commit comments

Comments
 (0)