Skip to content

python 3.5 support #153

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
wants to merge 40 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
c945022
Append python 3.5 where needed.
sdpython Jan 16, 2016
95958bb
Logical changes from sdpython/pythonnet3
vmuriart Feb 4, 2016
d6a782b
Merge pull request #1 from pythonnet/develop
Feb 14, 2016
9745dcd
Update .travis.yml
Feb 14, 2016
343238c
Update appveyor.yml
Feb 14, 2016
94107e4
Update .travis.yml
Feb 14, 2016
ef43a0e
Merge pull request #2 from denfromufa/py35
Feb 14, 2016
3447b9a
Update README.md
Feb 14, 2016
ba6c09a
Update assemblymanager.cs
Feb 14, 2016
0cbab89
Update interop.cs
Feb 14, 2016
e43b21a
Update interop.cs
Feb 14, 2016
b869178
Update setup.py
Feb 16, 2016
0a4fa48
Update interop.cs
Feb 16, 2016
ff86811
Update test_array.py
Feb 16, 2016
bebe07f
Merge pull request #3 from pythonnet/develop
Feb 16, 2016
611eb08
Update appveyor.yml
Feb 16, 2016
f2c932b
Update appveyor.yml
Feb 16, 2016
d2a605a
Update appveyor.yml
Feb 16, 2016
66a3d9f
Update appveyor.yml
Feb 16, 2016
369849e
Update appveyor.yml
Feb 16, 2016
fdd3478
Update appveyor.yml
Feb 16, 2016
41b1971
Update appveyor.yml
Feb 16, 2016
d04f470
Update appveyor.yml
Feb 16, 2016
4118ec6
Update appveyor.yml
Feb 16, 2016
7f10493
Update appveyor.yml
Feb 16, 2016
933f208
Update appveyor.yml
Feb 16, 2016
da58cb8
Update appveyor.yml
Feb 16, 2016
08881f6
Update appveyor.yml
Feb 16, 2016
8e21ea1
Update appveyor.yml
Feb 16, 2016
0b7e3f1
Update appveyor.yml
Feb 16, 2016
32859d4
Update appveyor.yml
Feb 16, 2016
e3cca0b
Update appveyor.yml
Feb 16, 2016
593afab
Update appveyor.yml
Feb 17, 2016
a0d59b7
Update appveyor.yml
Feb 17, 2016
0d2b846
Update appveyor.yml
Feb 17, 2016
1fe46b6
Update appveyor.yml
Feb 17, 2016
537a315
Update appveyor.yml
Feb 17, 2016
52fcbbb
Update appveyor.yml
Feb 17, 2016
756aaa0
Update appveyor.yml
Feb 17, 2016
5986077
Update appveyor.yml
Feb 17, 2016
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
Update appveyor.yml
  • Loading branch information
denfromufa committed Feb 17, 2016
commit 52fcbbbf6aa546ad0d3ac7ea7b128d6827dc881e
5 changes: 3 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ build_script:

test_script:
- cd "%PYTHON%"
- ps: Scripts\pip.exe install --no-cache-dir --force-reinstall --ignore-installed ('..\\dist\\' + (gci ..\dist)[0].Name)
- cd..
- ps: Scripts\pip.exe install --no-cache-dir --force-reinstall --ignore-installed ('C:\\projects\\pythonnet\\dist\\' +
(gci C:\projects\pythonnet\dist)[0].Name)
- cd C:\projects\pythonnet
- mkdir c:\testdir
- ps: copy-item (gci -path build -re -include Python.Test.dll)[0].FullName c:\testdir
- "%PYTHON%\\python.exe src\\tests\\runtests.py"