Skip to content

Commit d12d4c5

Browse files
author
Arjun Sreedharan
authored
1 parent 7380ed8 commit d12d4c5

13 files changed

Lines changed: 19 additions & 19 deletions

.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 Pipenv Install Buildpack is a Cloud Native Buildpack that installs
33
packages using pipenv and makes it available to the application.
44

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

88
## Behavior
99
This buildpack participates if `Pipfile` 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-
pipenvinstall "github.com/paketo-community/pipenv-install"
17-
"github.com/paketo-community/pipenv-install/fakes"
16+
pipenvinstall "github.com/paketo-buildpacks/pipenv-install"
17+
"github.com/paketo-buildpacks/pipenv-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/pipenv-install"
4+
id = "paketo-buildpacks/pipenv-install"
55
name = "Paketo Pipenv 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 pipenvinstall
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
// Pipenv is the name of the dependency provided by the Pipenv buildpack:
12-
// https://github.com/paketo-community/pipenv.
12+
// https://github.com/paketo-buildpacks/pipenv.
1313
const Pipenv = "pipenv"
1414

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

detect_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"testing"
88

99
"github.com/paketo-buildpacks/packit"
10-
pipenvinstall "github.com/paketo-community/pipenv-install"
11-
"github.com/paketo-community/pipenv-install/fakes"
10+
pipenvinstall "github.com/paketo-buildpacks/pipenv-install"
11+
"github.com/paketo-buildpacks/pipenv-install/fakes"
1212
"github.com/sclevine/spec"
1313

1414
. "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/pipenv-install
1+
module github.com/paketo-buildpacks/pipenv-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
@@ -11,8 +11,8 @@ import (
1111
"github.com/paketo-buildpacks/packit"
1212
"github.com/paketo-buildpacks/packit/pexec"
1313
"github.com/paketo-buildpacks/packit/scribe"
14-
pipenvinstall "github.com/paketo-community/pipenv-install"
15-
"github.com/paketo-community/pipenv-install/fakes"
14+
pipenvinstall "github.com/paketo-buildpacks/pipenv-install"
15+
"github.com/paketo-buildpacks/pipenv-install/fakes"
1616
"github.com/sclevine/spec"
1717

1818
. "github.com/onsi/gomega"

integration.json

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

integration/offline_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func testOffline(t *testing.T, context spec.G, it spec.S) {
3232
// Pipenv doesn't seem to support a vendoring/offline use case.
3333
// See https://github.com/pypa/pipenv/issues/4068
3434
// Also,
35-
// See https://github.com/paketo-community/pip/issues/111
35+
// See https://github.com/paketo-buildpacks/pip/issues/111
3636
// Pip buildpack doesn't yet work offline
3737
context.Pend("when the buildpack is run with pack build in offline mode", func() {
3838
var (

0 commit comments

Comments
 (0)