Skip to content

Commit

Permalink
Merge pull request #23 from dwhswenson/release-0.1.4
Browse files Browse the repository at this point in the history
Release 0.1.4
  • Loading branch information
dwhswenson authored Nov 3, 2017
2 parents 4dcdd34 + 8379989 commit f63b11d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion autorelease_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import setup
import contact_map
from autorelease import DefaultCheckRunner, conda_recipe_version
from packaging.version import Version

repo_path = '.'
versions = {
Expand All @@ -12,14 +13,15 @@
}

RELEASE_BRANCHES = ['stable']
RELEASE_TAG = "v" + Version(setup.PACKAGE_VERSION).base_version

if __name__ == "__main__":
checker = DefaultCheckRunner(
versions=versions,
setup=setup,
repo_path='.'
)
checker.release_branches = RELEASE_BRANCHES
checker.release_branches = RELEASE_BRANCHES + [RELEASE_TAG]

tests = checker.select_tests_from_sysargs()
n_fails = checker.run_as_test(tests)
2 changes: 1 addition & 1 deletion ci/conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: contact_map
# add ".dev0" for unreleased versions
version: "0.1.3"
version: "0.1.4"

source:
path: ../../
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
####################### USER SETUP AREA #################################
# * VERSION: base version (do not include .dev0, etc -- that's automatic)
# * IS_RELEASE: whether this is a release
VERSION = "0.1.3"
VERSION = "0.1.4"
IS_RELEASE = True

DEV_NUM = 0 # always 0: we don't do public (pypi) .dev releases
Expand Down

0 comments on commit f63b11d

Please sign in to comment.