Skip to content

Commit 586b27d

Browse files
committed
Sync with miniconda dependency name change
See cloudfoundry/buildpacks-ci@4efdf83
1 parent 52cd60a commit 586b27d

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

manifest.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,6 @@ dependencies:
3737
sha256: '009a3476197030e30d0ce924cc044ee4851ef27324e132b29fd12d8cde071915'
3838
source: https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz
3939
source_sha256: e22c0bb032fde08f53de9ffbc5a128233041d9f33b5de022c0978a2149885f82
40-
- name: miniconda3
41-
version: 4.10.3
42-
uri: https://repo.anaconda.com/miniconda/Miniconda3-py39_4.10.3-Linux-x86_64.sh
43-
sha256: 1ea2f885b4dbc3098662845560bc64271eb17085387a70c2ba3f29fff6f8d52f
44-
cf_stacks:
45-
- cflinuxfs3
46-
source: https://github.com/conda/conda/archive/4.10.3.tar.gz
47-
source_sha256: 1ea2f885b4dbc3098662845560bc64271eb17085387a70c2ba3f29fff6f8d52f
4840
- name: miniconda3-py39
4941
version: 4.11.0
5042
uri: https://repo.anaconda.com/miniconda/Miniconda3-py39_4.11.0-Linux-x86_64.sh

src/python/conda/conda.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func Run(c *Conda) error {
7171
}
7272

7373
func (c *Conda) Version() string {
74-
return "miniconda3"
74+
return "miniconda3-py39"
7575
}
7676

7777
func (c *Conda) Install(version string) error {

src/python/conda/conda_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ var _ = Describe("Conda", func() {
7373
Expect(ioutil.WriteFile(filepath.Join(buildDir, "runtime.txt"), []byte("python-3.2.3"), 0644)).To(Succeed())
7474
})
7575

76-
It("returns 'miniconda3'", func() {
77-
Expect(subject.Version()).To(Equal("miniconda3"))
76+
It("returns 'miniconda3-py39'", func() {
77+
Expect(subject.Version()).To(Equal("miniconda3-py39"))
7878
})
7979
})
8080

8181
Context("runtime.txt does not exist", func() {
82-
It("returns 'miniconda3'", func() {
83-
Expect(subject.Version()).To(Equal("miniconda3"))
82+
It("returns 'miniconda3-py39'", func() {
83+
Expect(subject.Version()).To(Equal("miniconda3-py39"))
8484
})
8585
})
8686
})

0 commit comments

Comments
 (0)