Skip to content

Commit 542a94c

Browse files
committed
v2.0.5
Add Python-3.6.6, Python3.7.0
1 parent 7683982 commit 542a94c

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
setup:
3-
@go get github.com/jessevdk/go-assets-builder
4-
@go get github.com/mitchellh/gox
5-
@go get github.com/tcnksm/ghr
6-
@dep ensure
3+
@go get github.com/jessevdk/go-assets-builder \
4+
github.com/mitchellh/gox \
5+
github.com/tcnksm/ghr
6+
@dep ensure -v
77

88
test:
99
@go test -v -race ./...

installer/installer_python_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ func TestPython_Install(t *testing.T) {
2323
testcases := []struct {
2424
version string
2525
}{
26-
{"3.6.4"},
27-
{"https://www.python.org/ftp/python/3.7.0/Python-3.7.0b1.tgz"},
26+
{"2.7.15"},
27+
{"3.6.6"},
28+
{"3.7.0"},
2829
}
2930

3031
for _, testcase := range testcases {

origin/python_package.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ var pythonPackages = map[string]Package{
7878
"3.6.3": NewPythonPackage("https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tgz#e9180c69ed9a878a4a8a3ab221e32fa9"),
7979
"3.6.4": NewPythonPackage("https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tgz#9de6494314ea199e3633211696735f65"),
8080
"3.6.5": NewPythonPackage("https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tgz#ab25d24b1f8cc4990ade979f6dc37883"),
81+
"3.6.6": NewPythonPackage("https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgz#9a080a86e1a8d85e45eee4b1cd0a18a2"),
82+
83+
"3.7.0": NewPythonPackage("https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tgz#41b6595deb4147a1ed517a7d9a580271"),
8184
}
8285

8386
func (p *pythonPackage) Type() PackageType {

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.4
1+
2.0.5

0 commit comments

Comments
 (0)