From c5312dffbfd2915eca159afb8beff0d2704516d0 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Sun, 27 Sep 2020 23:38:21 -0700 Subject: [PATCH 1/2] Fix get_real_method; don't use pyversion_build --- src/PyCall.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PyCall.jl b/src/PyCall.jl index fe0f2ae9..ab4de571 100644 --- a/src/PyCall.jl +++ b/src/PyCall.jl @@ -921,7 +921,7 @@ https://github.com/ipython/ipython/blob/5.9.0/IPython/utils/dir2.py """ function get_real_method(obj, name) ispynull(obj) && return nothing - @static if pyversion_build < v"3" + @static if pyversion < v"3" pyisinstance(obj, @pyglobalobj :PyType_Type) && return nothing end From a0f737dce494825d495b60a53f934ba4ab75935a Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Sun, 27 Sep 2020 23:49:49 -0700 Subject: [PATCH 2/2] Bump to 1.92.1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 5399016f..1e579cad 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "PyCall" uuid = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0" authors = ["Steven G. Johnson ", "Yichao Yu ", "Takafumi Arakaki ", "Simon Kornblith ", "Páll Haraldsson ", "Jon Malmaud ", "Jake Bolewski ", "Keno Fischer ", "Joel Mason ", "Jameson Nash ", "The JuliaPy development team"] -version = "1.92.0" +version = "1.92.1" [deps] Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"