Skip to content

Commit 3df5c48

Browse files
authored
version stdlibs (#1063)
* version stdlibs, which requires Julia 1.6 * try with Julia 1.4 * use "six" not "pyzmq" to test pyimport_conda * whoops
1 parent 69f9157 commit 3df5c48

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

Project.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ VersionParsing = "81def892-9a0e-5fdd-b105-ffc91e053289"
1616
Conda = "1.9"
1717
MacroTools = "0.4, 0.5"
1818
VersionParsing = "1.0"
19+
1920
julia = "1.4"
21+
Dates = "1.4"
22+
Libdl = "1.4"
23+
LinearAlgebra = "1.4"
24+
Serialization = "1.4"
2025

2126
[extras]
2227
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

test/runtests.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -393,12 +393,12 @@ const PyInt = pyversion < v"3" ? Int : Clonglong
393393
@test !ispynull(pyimport_conda("inspect", "not a conda package"))
394394
import Conda
395395
if PyCall.conda
396-
# import pyzmq to test PR #294
397-
let already_installed = "pyzmq" Conda._installed_packages()
398-
@test !ispynull(pyimport_conda("zmq", "pyzmq"))
399-
@test "pyzmq" Conda._installed_packages()
396+
# import six to test PR #294
397+
let already_installed = "six" Conda._installed_packages()
398+
@test !ispynull(pyimport_conda("six", "six"))
399+
@test "six" Conda._installed_packages()
400400
if !already_installed
401-
Conda.rm("pyzmq")
401+
Conda.rm("six")
402402
end
403403
end
404404
end

0 commit comments

Comments
 (0)