From 73f5ba9a55c38a8dbcaeb9cec50fff032ed88d68 Mon Sep 17 00:00:00 2001 From: mloning Date: Tue, 30 Jul 2019 16:32:22 +0100 Subject: [PATCH] updates for publication on pypi --- .travis.yml | 14 ++++++-------- setup.py | 2 +- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index bb88d63f..aa5ddfe4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,14 +35,12 @@ install: - pip install sphinx_rtd_theme - pip install nbsphinx - # TODO remove manual dependency installs (needed since test pypi does not find them) - - pip install tensorflow - - pip install keras - - pip install sktime - - pip install git+https://github.com/keras-team/keras-contrib.git@master # install keras contrib manually as not available on pypi - - # TODO change to from test repo to actual repo - - pip install -i https://test.pypi.org/simple sktime_dl==0.2.dev1 + # install keras contrib manually as currently not available on pypi + - pip install git+https://github.com/keras-team/keras-contrib.git@master + + # for test pypi add dependency installs manually + # - pip install --index-url --no-deps https://test.pypi.org/simple sktime_dl==0.2.dev1 + - pip install sktime-dl - python setup.py build_ext -i script: diff --git a/setup.py b/setup.py index 4887e363..22a5ce92 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def find_version(*file_paths): DISTNAME = 'sktime-dl' # package name is sktime-dl, to have a valid module path, module name is sktime_dl -DESCRIPTION = 'Deep learning extension toolbox for sktime, a scikit-learn compatible toolbox for ' \ +DESCRIPTION = 'Deep learning extension package for sktime, a scikit-learn compatible toolbox for ' \ 'learning with time series data' with codecs.open('README.rst', encoding='utf-8-sig') as f: LONG_DESCRIPTION = f.read()