From 9526004f1cb732f7076d1440c19f1414d67d0157 Mon Sep 17 00:00:00 2001 From: Thomas Robitaille Date: Thu, 15 Dec 2016 16:01:35 +0000 Subject: [PATCH 1/3] Merge pull request #279 from astrofrog/fix-setuptools-dev Need to run bootstrap.py when installing the developer version of setuptools --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7cbba8ff..d6a29415 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,7 +54,7 @@ install: # pip tries to remove the previous version of setuptools before the # installation is complete, which causes issues. Instead, we just install # setuptools manually. - - if [[ $SETUPTOOLS_VERSION == dev ]]; then git clone http://github.com/pypa/setuptools.git; cd setuptools; python setup.py install; cd ..; fi + - if [[ $SETUPTOOLS_VERSION == dev ]]; then git clone http://github.com/pypa/setuptools.git; cd setuptools; python bootstrap.py; python setup.py install; cd ..; fi before_script: # Some of the tests use git commands that require a user to be configured From 1f4a2b6470f25ad32ec6cee343f720353f84e091 Mon Sep 17 00:00:00 2001 From: Brigitta Sipocz Date: Fri, 16 Dec 2016 23:11:35 +0100 Subject: [PATCH 2/3] Merge pull request #277 from bsipocz/pytest_update_depcrecated_cfg Address pytest deprecations --- .travis.yml | 2 +- astropy_helpers/tests/coveragerc | 1 + setup.cfg | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d6a29415..d41b0478 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,7 @@ env: - PYTHON_VERSION=3.5 global: - CONDA_DEPENDENCIES="setuptools pytest sphinx cython numpy" - - PIP_DEPENDENCIES="coveralls pytest-cov==2.2" + - PIP_DEPENDENCIES="coveralls pytest-cov" matrix: include: diff --git a/astropy_helpers/tests/coveragerc b/astropy_helpers/tests/coveragerc index 87705ffc..eb3a620d 100644 --- a/astropy_helpers/tests/coveragerc +++ b/astropy_helpers/tests/coveragerc @@ -4,6 +4,7 @@ omit = astropy_helpers/commands/_test_compat.py astropy_helpers/compat/* astropy_helpers/*/setup_package.py + */test_pkg/* [report] exclude_lines = diff --git a/setup.cfg b/setup.cfg index 780a8283..9a054d59 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ -[pytest] +[tool:pytest] norecursedirs = .tox astropy_helpers/tests/package_template From 4d29b88a01e9c728c62a534e498b84b3d41054ef Mon Sep 17 00:00:00 2001 From: Brigitta Sipocz Date: Fri, 16 Dec 2016 22:58:29 +0000 Subject: [PATCH 3/3] Preparing release v1.3 --- CHANGES.rst | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 81ba3bb0..46117ec9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ astropy-helpers Changelog ========================= -1.3 (2016-12-11) +1.3 (2016-12-16) ---------------- - ``build_sphinx`` has been deprecated in favor of the ``build_docs`` command. diff --git a/setup.py b/setup.py index 046b24d6..724537bb 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ from astropy_helpers.version_helpers import generate_version_py NAME = 'astropy_helpers' -VERSION = '1.3rc1' +VERSION = '1.3' RELEASE = 'dev' not in VERSION DOWNLOAD_BASE_URL = 'http://pypi.io/packages/source/a/astropy-helpers'