diff --git a/.travis.yml b/.travis.yml index e57001806..edfc973cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - "3.4" - "3.5" - "3.6" + - "3.7" - "pypy" install: - pip install tox-travis @@ -16,3 +17,11 @@ addons: - libenchant-dev git: depth: false +deploy: + provider: pypi + user: Julian + password: ... + distributions: "sdist bdist_wheel" + on: + branch: master + python: "3.7" diff --git a/setup.py b/setup.py index 460aabeb2..a499785f9 100644 --- a/setup.py +++ b/setup.py @@ -1,2 +1,7 @@ from setuptools import setup -setup(use_scm_version=True) + + +def local_scheme(*args, **kwargs): + return '' + +setup(use_scm_version={'local_scheme': local_scheme})