diff --git a/.travis.yml b/.travis.yml index 2f8bf94..29e5e74 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,15 +8,12 @@ notifications: on_failure: change cache: pip -dist: trusty +dist: xenial env: global: - SCRIPT="test" - TEST_ARGS="" - - COV_CORE_SOURCE=nengo_sphinx_theme # early start pytest-cov engine - - COV_CORE_CONFIG=.coveragerc - - COV_CORE_DATAFILE=.coverage.eager - BRANCH_NAME="${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH}" jobs: @@ -43,14 +40,15 @@ jobs: distributions: "sdist bdist_wheel " on: all_branches: true + tags: false condition: $TRAVIS_BRANCH =~ ^release-candidate-* - condition: $TRAVIS_TAG = "" - provider: pypi user: tbekolay password: $PYPI_TOKEN distributions: "sdist bdist_wheel " on: all_branches: true + tags: true condition: $TRAVIS_TAG =~ ^v[0-9]* before_install: @@ -71,7 +69,7 @@ before_install: - if [[ "$TRAVIS_PYTHON_VERSION" < "3.6" ]]; then echo "Skipping bones-check because Python $TRAVIS_PYTHON_VERSION < 3.6"; else - bones-check; + bones-check --verbose; fi # display environment info - pip freeze diff --git a/LICENSE.rst b/LICENSE.rst index 4d96daa..a944420 100644 --- a/LICENSE.rst +++ b/LICENSE.rst @@ -4,7 +4,7 @@ Nengo Sphinx Theme license ************************** -Copyright (c) 2019-2019 Applied Brain Research +Copyright (c) 2019-2020 Applied Brain Research Nengo Sphinx Theme is made available under a proprietary license that permits using, copying, sharing, and making derivative works from diff --git a/docs/conf.py b/docs/conf.py index 529be5e..1d098a4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -77,7 +77,7 @@ project = "Nengo Sphinx Theme" authors = "Applied Brain Research" -copyright = "2019-2019 Applied Brain Research" +copyright = "2019-2020 Applied Brain Research" version = ".".join(nengo_sphinx_theme.__version__.split(".")[:2]) # Short X.Y version release = nengo_sphinx_theme.__version__ # Full version, with tags diff --git a/nengo_sphinx_theme/__init__.py b/nengo_sphinx_theme/__init__.py index a92f96c..bc665e1 100644 --- a/nengo_sphinx_theme/__init__.py +++ b/nengo_sphinx_theme/__init__.py @@ -7,7 +7,7 @@ assert __version__ -__copyright__ = "2018 Applied Brain Research" +__copyright__ = "2018-2020 Applied Brain Research" current_dir = os.path.abspath(os.path.dirname(__file__))