File tree Expand file tree Collapse file tree 7 files changed +12
-6
lines changed Expand file tree Collapse file tree 7 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.0.5.23
2+ current_version = 1.0.5.24
33parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
44serialize =
55 {major}.{minor}.{patch}.{release}{dev}
Original file line number Diff line number Diff line change 11package :
22 name : pythonnet
3- version : " 1.0.5.23 "
3+ version : " 1.0.5.24 "
44
55build :
66 skip : True # [not win]
Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ def run(self):
485485
486486setup (
487487 name = "pythonnet" ,
488- version = "1.0.5.23 " ,
488+ version = "1.0.5.24 " ,
489489 description = ".Net and Mono integration for Python" ,
490490 url = 'https://pythonnet.github.io/' ,
491491 license = 'MIT' ,
Original file line number Diff line number Diff line change 2525// Version Information. Keeping it simple. May need to revisit for Nuget
2626// See: https://codingforsmarties.wordpress.com/2016/01/21/how-to-version-assemblies-destined-for-nuget/
2727// AssemblyVersion can only be numeric
28- [ assembly: AssemblyVersion ( "1.0.5.23 " ) ]
28+ [ assembly: AssemblyVersion ( "1.0.5.24 " ) ]
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public static void initclr()
5353 {
5454#if USE_PYTHON_RUNTIME_VERSION
5555 // Has no effect until SNK works. Keep updated anyways.
56- Version = new Version ( "1.0.5.23 " ) ,
56+ Version = new Version ( "1.0.5.24 " ) ,
5757#endif
5858 CultureInfo = CultureInfo. InvariantCulture
5959 } ;
Original file line number Diff line number Diff line change @@ -344,6 +344,12 @@ internal static void ScanAssembly(Assembly assembly)
344344 // gather a list of all of the namespaces contributed to by
345345 // the assembly.
346346
347+ // skip this assembly, it causes 'GetTypes' call to hang
348+ if ( assembly . FullName . StartsWith ( "System.Windows.Forms" ) )
349+ {
350+ return ;
351+ }
352+
347353 Type [ ] types = assembly . GetTypes ( ) ;
348354 foreach ( Type t in types )
349355 {
Original file line number Diff line number Diff line change 22Code in this module gets loaded into the main clr module.
33"""
44
5- __version__ = "1.0.5.23 "
5+ __version__ = "1.0.5.24 "
66
77
88class clrproperty (object ):
You can’t perform that action at this time.
0 commit comments