Bump all relevant versions to 2.4.0-rc2
This commit is contained in:
Родитель
c459cac199
Коммит
868cd52710
|
@ -1,10 +1,10 @@
|
|||
package:
|
||||
name: pythonnet
|
||||
version: "2.4.0.dev0"
|
||||
version: {{ GIT_DESCRIBE_VERSION }}
|
||||
|
||||
build:
|
||||
skip: True # [not win]
|
||||
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
|
||||
number: {{ GIT_DESCRIBE_NUMBER }}
|
||||
{% if environ.get('GIT_DESCRIBE_NUMBER', '0') == '0' %}string: py{{ environ.get('PY_VER').replace('.', '') }}_0
|
||||
{% else %}string: py{{ environ.get('PY_VER').replace('.', '') }}_{{ environ.get('GIT_BUILD_STR', 'GIT_STUB') }}{% endif %}
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -622,7 +622,7 @@ if not os.path.exists(_get_interop_filename()):
|
|||
|
||||
setup(
|
||||
name="pythonnet",
|
||||
version="2.4.0.dev0",
|
||||
version="2.4.0-rc2",
|
||||
description=".Net and Mono integration for Python",
|
||||
url="https://pythonnet.github.io/",
|
||||
license="MIT",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
Code in this module gets loaded into the main clr module.
|
||||
"""
|
||||
|
||||
__version__ = "2.4.0.dev0"
|
||||
__version__ = "2.4.0-rc2"
|
||||
|
||||
|
||||
class clrproperty(object):
|
||||
|
|
Загрузка…
Ссылка в новой задаче