Bring the versions in sync

pull/342/head
Tim Head 2018-07-02 21:49:32 +02:00
rodzic aea3a9bf34
commit 1967ca4903
4 zmienionych plików z 8 dodań i 3 usunięć

Wyświetl plik

@ -50,6 +50,8 @@ matrix:
deploy:
provider: pypi
user: betatim
# this line together with `setup.cfg` creates universal wheels as long as
# repo2docker is a python only module (no compiled code)
distributions: sdist bdist_wheel
on:
tags: true

Wyświetl plik

@ -1 +1 @@
__version__ = '0.2.0'
__version__ = '0.5.0'

Wyświetl plik

@ -1,5 +1,8 @@
# used by our travis auto-deployment system
# needs changing if repo2docker ever stops being
# a pure python module
[wheel]
universal=1
universal = 1
[metadata]
license_file = LICENSE

Wyświetl plik

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='jupyter-repo2docker',
version='0.5.0',
version='0.5.1',
install_requires=[
'docker',
'traitlets',