Skip to content

Commit 0c90ff1

Browse files
authored
Merge pull request #4 from jmenglund/develop
Simplify travis builds
2 parents 314287c + 3760d1b commit 0c90ff1

File tree

5 files changed

+24
-11
lines changed

5 files changed

+24
-11
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ branches:
99
only:
1010
- master
1111

12-
before_install:
13-
- pip install codecov
14-
- pip install pytest pytest-cov
15-
- pip install biopython
16-
- pip install dendropy
12+
#before_install:
13+
# - pip install codecov
14+
# - pip install pytest pytest-cov
15+
# - pip install biopython
16+
# - pip install dendropy
1717

1818
script:
1919
py.test --cov=pandascharm.py
2020

2121
after_success:
22-
- codecov
22+
- codecov

CHANGELOG.rst

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ Changelog
66

77
Initial release.
88

9-
Released 2016-07-05
10-
119
Includes the following functions:
1210

1311
* frame_as_categorical()
@@ -17,3 +15,15 @@ Includes the following functions:
1715
* to_bioalignment()
1816
* to_charmatrix()
1917

18+
Release date: 2016-07-05
19+
20+
21+
0.1.1
22+
-----
23+
24+
* Simplified builds with Travis-CI.
25+
* DOI badge added to the top of *README.rst*.
26+
* Information on how to cite pandas-charm added to *README.rst*.
27+
28+
Release date: 2016-07-05
29+

pandascharm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
__authors__ = 'Markus Englund'
88
__license__ = 'MIT'
9-
__version__ = '0.1.0'
9+
__version__ = '0.1.1'
1010

1111

1212
def frame_as_categorical(frame, include_categories=None):

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
pandas>=0.16
22
pytest>=2.8
3+
codecov
4+
pytest-cov
35
DendroPy>=4.0
46
BioPython

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='pandas-charm',
11-
version='0.1.0',
11+
version='0.1.1',
1212
description=(
1313
'A small Python library for getting character matrices '
1414
'(alignments) into and out of pandas'),
@@ -17,7 +17,8 @@
1717
packages=find_packages(exclude=['docs', 'tests*']),
1818
py_modules=['pandascharm'],
1919
install_requires=['pandas>=0.16', 'numpy'],
20-
extras_require={'test': ['coverage', 'pytest', 'pytest-cov']},
20+
extras_require={'testing': [
21+
'coverage', 'pytest', 'pytest-cov', 'biopython', 'dendropy']},
2122
author='Markus Englund',
2223
author_email='[email protected]',
2324
url='https://github.com/jmenglund/pandas-charm',

0 commit comments

Comments
 (0)