Skip to content

Commit

Permalink
release 0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
turbach committed Nov 7, 2019
1 parent 0fd45c5 commit 1e29a94
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
15 changes: 8 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,20 @@ deploy:
skip_cleanup: true
script: bash ./ci/conda_upload.sh
on:
# ok for testing, conda uploads can be deleted and file names reused
all_branches: true
# tags: true
# condition: $TRAVIS_TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ # match vN.N.N
# all branches ok for testing, conda uploads can be deleted and
# filenames reused. branches other than vN.N.N are --label pre_release
# all_branches: true
tags: true
condition: $TRAVIS_TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ # match vN.N.N

# homegrown replacement for TravisCI gh_pages provider
- provider: script
skip_cleanup: true
script: bash ./ci/ghpages_upload.sh
on:
all_branches: true # testing only
# tags: true
# condition: $TRAVIS_TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+$
# all_branches: true # testing only
tags: true
condition: $TRAVIS_TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+$

- provider: pypi
skip_cleanup: true
Expand Down
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "0.4.6.dev0" %}
{% set version = "0.4.6" %}
{% set np_pin = "1.16.4" %}
{% set py_pin = "3.6" %}

Expand Down
2 changes: 1 addition & 1 deletion fitgrid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
from .models import run_model, lm, lmer
from . import utils, defaults

__version__ = "0.4.6.dev0"
__version__ = "0.4.6"

0 comments on commit 1e29a94

Please sign in to comment.