Skip to content

Commit

Permalink
Update to Nengo Bones 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss authored and hunse committed Mar 19, 2020
1 parent d410953 commit d9a439c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
10 changes: 4 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion nengo_sphinx_theme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__))


Expand Down

0 comments on commit d9a439c

Please sign in to comment.