Skip to content

Commit

Permalink
still not what I want yet...
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewAnnex committed Mar 20, 2016
1 parent 80d50ce commit 89c2ec8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion appveyor.yml
Expand Up @@ -12,20 +12,24 @@ environment:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"
PLAT_NAME: "win32"

- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "64"
PLAT_NAME: "win-amd64"

- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.x"
PYTHON_ARCH: "32"
WINDOWS_SDK_VERSION: "v7.1"
PLAT_NAME: "win32"

- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.x"
PYTHON_ARCH: "64"
WINDOWS_SDK_VERSION: "v7.1"
PLAT_NAME: "win-amd64"

platform:
- x64
Expand Down Expand Up @@ -70,7 +74,7 @@ after_test:
- ECHO "DONE!"
- dir
- ECHO "BUILDING WHEELS..."
- "%PYTHON%/python setup.py bdist_wheel"
- "%PYTHON%/python setup.py bdist_wheel --plat-name=%PLAT_NAME%"

artifacts:
- path: dist\*
Expand Down
2 changes: 1 addition & 1 deletion appveyor/makeDynamicSpice.bat
Expand Up @@ -34,7 +34,7 @@ set cl= /c /nologo -D_COMPLEX_DEFINED -DMSDOS -DOMIT_BLANK_CC >nul

rename zzsecprt.x zzsecprt.c

cl zzsecprt.c
cl zzsecprt.c >nul

dir /b *.obj > temp.lst
@echo on
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -209,7 +209,7 @@ def windows_method():
include_package_data=True,
zip_safe=False,
distclass=BinaryDistribution,
package_data={'': ['*.so', "*.dll"]},
package_data={'': ['spiceypy/utils/*.so', "spiceypy/utils/*.dll"]},
install_requires=['six'],
requires=['numpy', 'pytest', 'six'],
tests_require=['pytest', 'numpy', 'six'],
Expand Down

0 comments on commit 89c2ec8

Please sign in to comment.