Skip to content

Commit

Permalink
Bring in CI changes from master
Browse files Browse the repository at this point in the history
  • Loading branch information
jviide committed Jul 22, 2016
1 parent a566b30 commit de87630
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
13 changes: 13 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
machine:
post:
- pyenv install pypy-5.3
- pyenv global 2.7.10 3.4.3 3.5.0 pypy-5.3

deployment:
pypi:
owner: ouspg
tag: /^v[0-9.]+$/
commands:
- pip install twine
- python setup.py bdist_wheel --universal
- twine upload --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" dist/*.whl
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ def format_version(version_info):
setup(
name="trytls",
version=trytls.__version__,
license="MIT",
url="https://github.com/ouspg/trytls",
package_dir={"": "./runners"},
packages=find_packages("./runners"),
entry_points={
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tox]
envlist = py27,py35
envlist = py27,py34,py35,pypy
skip_missing_interpreters = true

[testenv]
deps =
Expand Down

0 comments on commit de87630

Please sign in to comment.