Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.

Commit 3193158

Browse files
authored
Merge pull request #86 from juanjux/feature/gopkg_sdk
Versioned sdk imports
2 parents f1203be + 2aea703 commit 3193158

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
- docker
88

99
before_script:
10-
- go get -v github.com/bblfsh/sdk/...
10+
- go get -v gopkg.in/bblfsh/sdk.v0/...
1111
- bblfsh-sdk prepare-build .
1212
- go get -v -t ./...
1313

Diff for: driver/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/bblfsh/sdk/protocol/driver"
4+
"gopkg.in/bblfsh/sdk.v0/protocol/driver"
55

66
"github.com/bblfsh/python-driver/driver/normalizer"
77
)

Diff for: driver/normalizer/annotation.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55

66
"github.com/bblfsh/python-driver/driver/normalizer/pyast"
77

8-
. "github.com/bblfsh/sdk/uast"
9-
. "github.com/bblfsh/sdk/uast/ann"
8+
. "gopkg.in/bblfsh/sdk.v0/uast"
9+
. "gopkg.in/bblfsh/sdk.v0/uast/ann"
1010
)
1111

1212
/*

Diff for: driver/normalizer/annotation_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"path/filepath"
77
"testing"
88

9-
"github.com/bblfsh/sdk/uast"
109
"github.com/stretchr/testify/require"
10+
"gopkg.in/bblfsh/sdk.v0/uast"
1111
)
1212

1313
var (

Diff for: driver/normalizer/parser.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package normalizer
22

33
import (
4-
"github.com/bblfsh/sdk/protocol/driver"
5-
"github.com/bblfsh/sdk/protocol/native"
4+
"gopkg.in/bblfsh/sdk.v0/protocol/driver"
5+
"gopkg.in/bblfsh/sdk.v0/protocol/native"
66
)
77

88
var ToNoder = &native.ObjectToNoder{

0 commit comments

Comments
 (0)