File tree Expand file tree Collapse file tree 5 files changed +7
-22
lines changed
Expand file tree Collapse file tree 5 files changed +7
-22
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,6 @@ install:
4040
4141script :
4242 - python -m pytest
43-
44- - cp Python.Runtime.dll.config src/embed_tests/bin/
4543 - mono ./packages/NUnit.*/tools/nunit3-console.exe src/embed_tests/bin/Python.EmbeddingTest.dll
4644
4745after_script :
Original file line number Diff line number Diff line change @@ -49,12 +49,14 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
4949- Fixed fixture location for Python tests and ` Embedded_Tests `
5050- Fixed ` PythonException ` crash during Shutdown (#400 )
5151- Fixed ` AppDomain ` unload during GC (#397 )(#400 )
52- - Fixed ` Py_Main ` & ` PySys_SetArgvEx ` no mem error on ` UCS4/PY3 ` (#399 )
52+ - Fixed ` Py_Main ` & ` PySys_SetArgvEx ` ` no mem error ` on ` UCS4/PY3 ` (#399 )
53+ - Fixed ` Python.Runtime.dll.config ` on macOS (#120 )
5354
5455### Removed
5556
5657- Removed ` six ` dependency for ` unittests ` (#329 )
5758- Removed ` Mono.Unix ` dependency for ` UCS4 ` (#360 )
59+ - Removed need for ` Python.Runtime.dll.config `
5860
5961## [ 2.2.2] [ ] - 2017-01-29
6062
@@ -64,7 +66,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
6466
6567## [ 2.2.1] [ ] - 2017-01-26
6668
67- - ` v2.2.0 ` had a release issue on pypi . Bumped to ` v2.2.1 `
69+ - ` v2.2.0 ` had a release issue on PyPi . Bumped to ` v2.2.1 `
6870
6971### Added
7072
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ def _get_interop_filename():
104104
105105def _get_source_files ():
106106 """Walk project and collect the files needed for ext_module"""
107- for ext in (".sln" , ".config" ):
107+ for ext in (".sln" , ):
108108 for path in glob .glob ("*" + ext ):
109109 yield path
110110
@@ -381,7 +381,7 @@ def run(self):
381381 data_files = [
382382 ("{install_platlib}" , [
383383 "{build_lib}/Python.Runtime.dll" ,
384- "Python.Runtime.dll.config" ]),
384+ ]),
385385 ],
386386 cmdclass = {
387387 "build_ext" : BuildExtPythonnet ,
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ public class Runtime
124124
125125#if MONO_LINUX || MONO_OSX
126126#if PYTHON27
127- internal const string dllBase = "python27 " ;
127+ internal const string dllBase = "python2.7 " ;
128128#elif PYTHON33
129129 internal const string dllBase = "python3.3" ;
130130#elif PYTHON34
You can’t perform that action at this time.
0 commit comments