Skip to content

Commit 4ea0c07

Browse files
go package to test is at rudderlabs/gopy
1 parent f6c26ce commit 4ea0c07

File tree

17 files changed

+30
-33
lines changed

17 files changed

+30
-33
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
TAGS: "-tags=ci"
11-
COVERAGE: "-coverpkg=github.com/go-python/gopy/..."
11+
COVERAGE: "-coverpkg=github.com/rudderlabs/gopy/..."
1212
# Init() in main_test will make sure all backends are available if
1313
# GOPY_TRAVIS_CI is set
1414
GOPY_TRAVIS_CI: 1

_examples/cpkg/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package main
99
import (
1010
"fmt"
1111

12-
"github.com/go-python/gopy/_examples/cpkg"
12+
"github.com/rudderlabs/gopy/_examples/cpkg"
1313
)
1414

1515
func main() {

_examples/funcs/funcs.go

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

10-
"github.com/go-python/gopy/_examples/cpkg"
10+
"github.com/rudderlabs/gopy/_examples/cpkg"
1111
)
1212

1313
type FunStruct struct {

_examples/hi/hi.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ package hi
88
import (
99
"fmt"
1010

11-
"github.com/go-python/gopy/_examples/cpkg"
12-
"github.com/go-python/gopy/_examples/structs"
11+
"github.com/rudderlabs/gopy/_examples/cpkg"
12+
"github.com/rudderlabs/gopy/_examples/structs"
1313
)
1414

1515
const (

_examples/iface/iface.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
package iface
77

88
import (
9-
"github.com/go-python/gopy/_examples/cpkg"
9+
"github.com/rudderlabs/gopy/_examples/cpkg"
1010
)
1111

1212
// Iface has a single F() method

_examples/wrapper/pywrapper/wrapper_code.go

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

10-
"github.com/go-python/gopy/_examples/wrapper"
10+
"github.com/rudderlabs/gopy/_examples/wrapper"
1111
)
1212

1313
type WrapperStruct struct {

bind/gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ static inline void gopy_err_handle() {
8989
*/
9090
import "C"
9191
import (
92-
"github.com/go-python/gopy/gopyh" // handler
92+
"github.com/rudderlabs/gopy/gopyh" // handler
9393
%[6]s
9494
)
9595

cmd_build.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/gonuts/commander"
1717
"github.com/gonuts/flag"
1818

19-
"github.com/go-python/gopy/bind"
19+
"github.com/rudderlabs/gopy/bind"
2020
)
2121

2222
func gopyMakeCmdBuild() *commander.Command {
@@ -29,7 +29,7 @@ build generates and compiles (C)Python language bindings for Go package(s).
2929
3030
ex:
3131
$ gopy build [options] <go-package-name> [other-go-package...]
32-
$ gopy build github.com/go-python/gopy/_examples/hi
32+
$ gopy build github.com/rudderlabs/gopy/_examples/hi
3333
`,
3434
Flag: *flag.NewFlagSet("gopy-build", flag.ExitOnError),
3535
}

cmd_exe.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"path/filepath"
1212
"strings"
1313

14-
"github.com/go-python/gopy/bind"
14+
"github.com/rudderlabs/gopy/bind"
1515
"github.com/gonuts/commander"
1616
"github.com/gonuts/flag"
1717
)
@@ -35,7 +35,7 @@ When including multiple packages, list in order of increasing dependency, and us
3535
3636
ex:
3737
$ gopy exe [options] <go-package-name> [other-go-package...]
38-
$ gopy exe github.com/go-python/gopy/_examples/hi
38+
$ gopy exe github.com/rudderlabs/gopy/_examples/hi
3939
`,
4040
Flag: *flag.NewFlagSet("gopy-exe", flag.ExitOnError),
4141
}
@@ -55,7 +55,7 @@ ex:
5555
cmd.Flag.String("author", "gopy", "author name")
5656
cmd.Flag.String("email", "[email protected]", "author email")
5757
cmd.Flag.String("desc", "", "short description of project (long comes from README.md)")
58-
cmd.Flag.String("url", "https://github.com/go-python/gopy", "home page for project")
58+
cmd.Flag.String("url", "https://github.com/rudderlabs/gopy", "home page for project")
5959
cmd.Flag.Bool("no-warn", false, "suppress warning messages, which may be expected")
6060
cmd.Flag.Bool("no-make", false, "do not generate a Makefile, e.g., when called from Makefile")
6161

cmd_gen.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"log"
1010

11-
"github.com/go-python/gopy/bind"
11+
"github.com/rudderlabs/gopy/bind"
1212
"github.com/gonuts/commander"
1313
"github.com/gonuts/flag"
1414
)
@@ -23,7 +23,7 @@ gen generates (C)Python language bindings for Go package(s).
2323
2424
ex:
2525
$ gopy gen [options] <go-package-name> [other-go-package...]
26-
$ gopy gen github.com/go-python/gopy/_examples/hi
26+
$ gopy gen github.com/rudderlabs/gopy/_examples/hi
2727
`,
2828
Flag: *flag.NewFlagSet("gopy-gen", flag.ExitOnError),
2929
}

0 commit comments

Comments
 (0)