Changeset 1748e73 in trunk
- Timestamp:
- 2016-12-15T00:10:29Z (8 years ago)
- Branches:
- master
- Children:
- 7eceb21, e32b664
- Parents:
- a7479f1 (diff), 2cd30f6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified .appveyor.yml ¶
ra7479f1 r1748e73 7 7 # For Python versions available on Appveyor, see 8 8 # http://www.appveyor.com/docs/installed-software#python 9 #- PYTHON: "C:\\Python27"9 - PYTHON: "C:\\Python27" 10 10 - PYTHON: "C:\\Python27-x64" 11 11 # DISTUTILS_USE_SDK: "1" … … 35 35 36 36 after_test: 37 # This step builds your wheels.37 # This builds the main tahoe wheel, and wheels for all dependencies. 38 38 # Again, you only need build.cmd if you're building C extensions for 39 39 # 64-bit Python 3.3/3.4. And you need to use %PYTHON% to get the correct … … 41 41 - | 42 42 %PYTHON%\python.exe setup.py bdist_wheel 43 %PYTHON%\python.exe -m pip wheel -w dist . 43 44 44 45 artifacts: 45 46 # bdist_wheel puts your built wheel in the dist directory 46 - path: dist\* 47 # "pip wheel -w dist ." puts all the dependency wheels there too 48 # this gives us a zipfile with everything 49 - path: dist 47 50 48 51 #on_success: -
TabularUnified .travis.yml ¶
ra7479f1 r1748e73 3 3 - "linux" 4 4 - "osx" 5 # xcode7 gives us OS-X 10.10, which gives us newer OpenSSL (the default gives6 # us 10.9, which appears to have OpenSSL-0.9.8, which is rejected by7 # cryptography-1.4)8 osx_image: xcode79 5 cache: pip 10 6 before_cache:
Note: See TracChangeset
for help on using the changeset viewer.