File tree 3 files changed +4
-4
lines changed 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
package :
2
2
name : pythonnet
3
- version : " 2.4.0.dev0 "
3
+ version : {{ GIT_DESCRIBE_VERSION }}
4
4
5
5
build :
6
6
skip : True # [not win]
7
- number : {{ environ.get(' GIT_DESCRIBE_NUMBER', 0) }}
7
+ number : {{ GIT_DESCRIBE_NUMBER }}
8
8
{% if environ.get('GIT_DESCRIBE_NUMBER', '0') == '0' %}string: py{{ environ.get('PY_VER').replace('.', '') }}_0
9
9
{% else %}string: py{{ environ.get('PY_VER').replace('.', '') }}_{{ environ.get('GIT_BUILD_STR', 'GIT_STUB') }}{% endif %}
10
10
Original file line number Diff line number Diff line change @@ -622,7 +622,7 @@ def run(self):
622
622
623
623
setup (
624
624
name = "pythonnet" ,
625
- version = "2.4.0.dev0 " ,
625
+ version = "2.4.0-rc2 " ,
626
626
description = ".Net and Mono integration for Python" ,
627
627
url = "https://pythonnet.github.io/" ,
628
628
license = "MIT" ,
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__ = "2.4.0.dev0 "
5
+ __version__ = "2.4.0-rc2 "
6
6
7
7
8
8
class clrproperty (object ):
You can’t perform that action at this time.
0 commit comments