Skip to content

Fixes to integrate pythonnet into Unity #745

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
410ac15
UNI-63112: unit test for the domain reload crash
Sep 14, 2018
c07fff0
UNI-62864: shutdown on domain reload.
Sep 14, 2018
d016b24
Drive-by improve a hashtable to hashset.
Sep 26, 2018
9ae91ba
UNI-63112: implement platform-aware native code for tp_traverse et al
Sep 26, 2018
bb76ff3
Domain reload work: port previous commit to Windows
benoithudson Sep 28, 2018
0c5b78f
Fixed a bogus comment.
benoithudson Sep 28, 2018
9ffb705
Make prettier
benoithudson Sep 28, 2018
2e03eb8
Added author and changelog information.
Sep 28, 2018
156f554
Fix for linux mmap requiring MAP_PRIVATE
benoithudson Oct 2, 2018
84f5087
Doc and typo fixes.
benoithudson Oct 2, 2018
b9f6c2c
Merge branch 'uni-63112-hotreload-crash-test' of https://github.com/U…
benoithudson Oct 2, 2018
e585bdc
Merge pull request #7 from Unity-Technologies/uni-63112-hotreload-cra…
benoithudson Oct 2, 2018
9ab7b13
Disable app domain test case on .NET Standard
Oct 3, 2018
13f8b53
Fix for CI: define NETSTANDARD in src/embed_tests
Oct 3, 2018
c0b52fa
Fix compile error on OSX that came from an upstream merge.
Oct 3, 2018
4096a95
Fix in dotnet code path: find mmap in libc rather than __Internal
Oct 3, 2018
9b74cce
Fix TypeManager test for running on .NET Core under linux/OSX
Oct 3, 2018
5e15b2c
Fix for python3 tests crashing: it's about test order
Oct 4, 2018
211155e
WIP - debug: turn off "quiet" so that I get an error message
Oct 11, 2018
14bc2e2
Use msbuild v14 for linux/darwin.
Oct 11, 2018
8a80fd5
Upgrade setuptools on appveyor
Oct 11, 2018
dd77fa5
Flush the console on every WriteLine so messages are in order.
Oct 11, 2018
f947e3b
Grasping at straws: try using conda to set up environment
Oct 11, 2018
1fda82b
Revert "Grasping at straws: try using conda to set up environment"
Oct 11, 2018
ec6f6c5
Give up on python 3.4 for appveyor.
Oct 11, 2018
4bac40e
Travis: don't print from domain-reload test
Oct 11, 2018
386a034
Fixed appveyor "allow_failures" syntax.
Oct 11, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Grasping at straws: try using conda to set up environment
The previous attempt got further but got stuck trying to build psutil from source, with the infamous "error: INCLUDE environment variable is empty" error that means your windows setup won't be building wheels from source today.
  • Loading branch information
Benoit Hudson committed Oct 11, 2018
commit f947e3b0152cbcd3bb15d2e1fd6786eb2fce40e4
14 changes: 3 additions & 11 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,10 @@ environment:
- PYTHON_VERSION: 3.5
- PYTHON_VERSION: 3.6

init:
# Update Environment Variables based on matrix/platform
- set PY_VER=%PYTHON_VERSION:.=%
- set PYTHON=C:\PYTHON%PY_VER%
- if %PLATFORM%==x64 (set PYTHON=%PYTHON%-x64)

# Put desired Python version first in PATH
- set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%

install:
# Upgrade setuptools to find MSVC. Otherwise you get "error: Microsoft Visual C++ 10.0 is required (Unable to find vcvarsall.bat)."
- python -m pip install -U pip
# Set up the python environment
- conda create -n testenv python=%PYTHON_VERSION% pip
- activate testenv
- pip install --upgrade setuptools
- pip install --upgrade -r requirements.txt

Expand Down