Skip to content

Commit 780132b

Browse files
Randall C. O'Reillysbinet
authored andcommitted
final update of goki -> go-python -- my pass should be complete here and now just awaiting final review for PR merge.
1 parent ec3f125 commit 780132b

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

_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/goki/gopy/_examples/cpkg"
10+
"github.com/go-python/gopy/_examples/cpkg"
1111
)
1212

1313
type FunStruct struct {

bind/gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ static inline void gopy_err_handle() {
8686
*/
8787
import "C"
8888
import (
89-
"github.com/goki/gopy/gopyh" // handler
89+
"github.com/go-python/gopy/gopyh" // handler
9090
%[6]s
9191
)
9292

cmd_build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"os/exec"
1212
"strings"
1313

14-
"github.com/goki/gopy/bind"
14+
"github.com/go-python/gopy/bind"
1515
"github.com/gonuts/commander"
1616
"github.com/gonuts/flag"
1717
)

cmd_exe.go

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

14-
"github.com/goki/gopy/bind"
14+
"github.com/go-python/gopy/bind"
1515
"github.com/gonuts/commander"
1616
"github.com/gonuts/flag"
1717
)

cmd_gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"log"
1010

11-
"github.com/goki/gopy/bind"
11+
"github.com/go-python/gopy/bind"
1212
"github.com/gonuts/commander"
1313
"github.com/gonuts/flag"
1414
)

cmd_pkg.go

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

14-
"github.com/goki/gopy/bind"
14+
"github.com/go-python/gopy/bind"
1515
"github.com/gonuts/commander"
1616
"github.com/gonuts/flag"
1717
)

gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818

1919
"golang.org/x/tools/go/packages"
2020

21-
"github.com/goki/gopy/bind"
21+
"github.com/go-python/gopy/bind"
2222
"github.com/pkg/errors"
2323
)
2424

main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"strings"
1818
"testing"
1919

20-
"github.com/goki/gopy/bind"
20+
"github.com/go-python/gopy/bind"
2121
)
2222

2323
var (

pkgsetup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"os"
1010
"path/filepath"
1111

12-
"github.com/goki/gopy/bind"
12+
"github.com/go-python/gopy/bind"
1313
)
1414

1515
// 1 = pkg name, 2 = -user, 3 = version 4 = author, 5 = email, 6 = desc, 7 = url

0 commit comments

Comments
 (0)