Skip to content

Instantly share code, notes, and snippets.

@aodag
Created February 14, 2015 08:25
Show Gist options
  • Save aodag/dac136d555b035a86a8a to your computer and use it in GitHub Desktop.
Save aodag/dac136d555b035a86a8a to your computer and use it in GitHub Desktop.
各種Pythonバージョンのwheelを作るtox設定
[tox]
envlist = py33,py34,py35
skipsdist = true
[testenv]
deps = wheel
commands = pip wheel -r requirements.txt -f wheelhouse
[testenv:py35]
basepython = python3.5
deps = wheel
commands = pip wheel -r requirements.txt -f wheelhouse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment