Skip to content

Commit

Permalink
Release v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Nov 18, 2019
1 parent 41b7b76 commit 311c3f4
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .nengobones.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ manifest_in:
graft:
- nengo-data
recursive-include:
- nengo *.md
- nengo *.rst
- nengo *.txt

Expand Down Expand Up @@ -227,6 +228,10 @@ travis_yml:
if: "branch =~ ^release-candidate-*"
- dist: xenial
python: 3.7
pypi_user: tbekolay
deploy_dists:
- sdist
- bdist_wheel

ci_scripts:
- template: static
Expand All @@ -250,6 +255,7 @@ ci_scripts:
- $NUMPY
- scipy
- matplotlib
- template: deploy

codecov_yml: {}

Expand Down
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,27 @@ jobs:
-
dist: xenial
python: 3.7
- stage: deploy
if: branch =~ ^release-candidate-* OR tag =~ ^v[0-9]*
env: SCRIPT="deploy"
cache: false
deploy:
- provider: pypi
server: https://test.pypi.org/legacy/
user: tbekolay
password: $PYPI_TOKEN
distributions: "sdist bdist_wheel "
on:
all_branches: true
condition: $TRAVIS_BRANCH =~ ^release-candidate-*
condition: $TRAVIS_TAG = ""
- provider: pypi
user: tbekolay
password: $PYPI_TOKEN
distributions: "sdist bdist_wheel "
on:
all_branches: true
condition: $TRAVIS_TAG =~ ^v[0-9]*

before_install:
# export travis_terminate for use in scripts, from here:
Expand Down
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Release History
- Removed
- Fixed
3.0.0 (unreleased)
==================
3.0.0 (November 18, 2019)
=========================

**Added**

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ global-exclude *.pyc *.pyo *.pyd

# Repo-specific files
graft nengo-data
recursive-include nengo *.md
recursive-include nengo *.rst
recursive-include nengo *.txt
2 changes: 1 addition & 1 deletion nengo/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

name = "nengo"
version_info = (3, 0, 0) # (major, minor, patch)
dev = 0
dev = None

version = "{v}{dev}".format(
v=".".join(str(v) for v in version_info),
Expand Down

0 comments on commit 311c3f4

Please sign in to comment.