Skip to content

Commit ad8086c

Browse files
committed
Merge branch 'common-diffpy-patches'
2 parents 01a159e + c59741a commit ad8086c

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
/devutils export-ignore
66
/doc export-ignore
77
.gitarchive.cfg export-subst
8+
*.bat text eol=crlf

.travis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Use container-based travis workers
2-
sudo: false
3-
41
language: generic
52

63
os:
@@ -46,7 +43,7 @@ before_install:
4643
MYPIP=pip3;
4744
MYPIPFLAGS="--user";
4845
fi
49-
- MYMCREPO=https://repo.continuum.io/miniconda
46+
- MYMCREPO=https://repo.anaconda.com/miniconda
5047
- case ${TRAVIS_OS_NAME} in
5148
linux)
5249
MYMCBUNDLE=Miniconda3-latest-Linux-x86_64.sh ;;
@@ -68,7 +65,7 @@ before_install:
6865
- $NOMC || popd
6966
- $NOMC || source ~/mc/bin/activate base
7067
- $NOMC || conda update --yes conda
71-
- $NOMC || conda install --yes conda-build jinja2
68+
- $NOMC || conda install --yes conda-build conda-verify jinja2
7269
- $NOMC || conda create --name=testenv --yes python=${MYPYTHON_VERSION} coverage
7370

7471
- $NOAPT || test "${TRAVIS_OS_NAME}" = "linux" || exit $?

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. image:: https://travis-ci.org/diffpy/diffpy.utils.svg?branch=master
22
:target: https://travis-ci.org/diffpy/diffpy.utils
33

4-
.. image:: http://codecov.io/github/diffpy/diffpy.utils/coverage.svg?branch=master
5-
:target: http://codecov.io/github/diffpy/diffpy.utils?branch=master
4+
.. image:: https://codecov.io/gh/diffpy/diffpy.utils/branch/master/graph/badge.svg
5+
:target: https://codecov.io/gh/diffpy/diffpy.utils
66

77

88
diffpy.utils

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ def getversioncfg():
7676

7777
versiondata = getversioncfg()
7878

79+
with open(os.path.join(MYDIR, 'README.rst')) as fp:
80+
long_description = fp.read()
81+
7982
# define distribution
8083
setup_args = dict(
8184
name = "diffpy.utils",
@@ -90,6 +93,8 @@ def getversioncfg():
9093
maintainer = 'Pavol Juhas',
9194
maintainer_email = '[email protected]',
9295
description = "Shared utilities for diffpy packages.",
96+
long_description = long_description,
97+
long_description_content_type = 'text/x-rst',
9398
license = 'BSD-style license',
9499
url = "https://github.com/diffpy/diffpy.utils/",
95100
keywords = "text data parsers wx grid",

0 commit comments

Comments
 (0)