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 1
1
[bumpversion]
2
- current_version = 1.0.5.23
2
+ current_version = 1.0.5.24
3
3
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
4
4
serialize =
5
5
{major}.{minor}.{patch}.{release}{dev}
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : pythonnet
3
- version : " 1.0.5.23 "
3
+ version : " 1.0.5.24 "
4
4
5
5
build :
6
6
skip : True # [not win]
Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ def run(self):
485
485
486
486
setup (
487
487
name = "pythonnet" ,
488
- version = "1.0.5.23 " ,
488
+ version = "1.0.5.24 " ,
489
489
description = ".Net and Mono integration for Python" ,
490
490
url = 'https://pythonnet.github.io/' ,
491
491
license = 'MIT' ,
Original file line number Diff line number Diff line change 25
25
// Version Information. Keeping it simple. May need to revisit for Nuget
26
26
// See: https://codingforsmarties.wordpress.com/2016/01/21/how-to-version-assemblies-destined-for-nuget/
27
27
// 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()
53
53
{
54
54
#if USE_PYTHON_RUNTIME_VERSION
55
55
// 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 " ) ,
57
57
#endif
58
58
CultureInfo = CultureInfo. InvariantCulture
59
59
} ;
Original file line number Diff line number Diff line change @@ -344,6 +344,12 @@ internal static void ScanAssembly(Assembly assembly)
344
344
// gather a list of all of the namespaces contributed to by
345
345
// the assembly.
346
346
347
+ // skip this assembly, it causes 'GetTypes' call to hang
348
+ if ( assembly . FullName . StartsWith ( "System.Windows.Forms" ) )
349
+ {
350
+ return ;
351
+ }
352
+
347
353
Type [ ] types = assembly . GetTypes ( ) ;
348
354
foreach ( Type t in types )
349
355
{
Original file line number Diff line number Diff line change 2
2
Code in this module gets loaded into the main clr module.
3
3
"""
4
4
5
- __version__ = "1.0.5.23 "
5
+ __version__ = "1.0.5.24 "
6
6
7
7
8
8
class clrproperty (object ):
You can’t perform that action at this time.
0 commit comments