[med-svn] [python-skbio] branch master updated (a2dba69 -> 2ed7c52)

Kevin Murray daube-guest at moszumanska.debian.org
Thu Feb 18 00:53:55 UTC 2016


This is an automated email from the git hooks/post-receive script.

daube-guest pushed a change to branch master
in repository python-skbio.

      from  a2dba69   Remove sphinx patch
       new  b29f34f   Build docs w/ python 3, fix matplotlib weirdness
       new  76aae4f   Imported Upstream version 0.4.2
       new  889e71f   Merge tag 'upstream/0.4.2'
       new  6fd4568   Bump changelog versio
       new  bf4c98f   Refresh patches
       new  2ed7c52   Remove httpretty build-dep

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.md                                       |  33 +-
 RELEASE.md                                         |   4 +-
 ci/pip_requirements.txt                            |   2 +-
 debian/changelog                                   |   6 +
 debian/control                                     |   8 +-
 ...ce-use-of-Agg-backend-no-X-for-matplotlib.patch |  31 -
 debian/patches/0004-Don-t-build-pdf-figures.patch  |  21 -
 ...0005-Fix-test-failure-patch-from-upstream.patch |  34 -
 ...Remove-broken-test-on-upstream-suggestion.patch |  35 -
 debian/patches/gzip-fix                            |  67 --
 ...ax-path-to-debian-s-copy.patch => mathjax-path} |   0
 debian/patches/series                              |   7 +-
 debian/rules                                       |   8 +-
 doc/source/_static/style.css                       |   4 +
 doc/source/conf.py                                 |   7 +-
 skbio/__init__.py                                  |   2 +-
 skbio/alignment/_pairwise.py                       |  26 +-
 skbio/alignment/_tabular_msa.py                    |  45 +-
 skbio/alignment/tests/test_pairwise.py             |  18 +-
 skbio/alignment/tests/test_tabular_msa.py          |  36 +-
 skbio/diversity/alpha/_lladser.py                  |   2 +-
 skbio/io/__init__.py                               |   9 +-
 skbio/io/_exception.py                             |   5 +
 skbio/io/format/_base.py                           |   2 +-
 skbio/io/format/clustal.py                         |  12 +-
 skbio/io/format/fasta.py                           |   9 +-
 skbio/io/format/fastq.py                           |   9 +-
 skbio/io/format/genbank.py                         |   8 +-
 skbio/io/format/phylip.py                          |   8 +-
 skbio/io/format/stockholm.py                       | 710 +++++++++++++++++++++
 .../io/format/tests/data/stockholm_all_data_types  |  15 +
 skbio/io/format/tests/data/stockholm_blank_lines   |   6 +
 skbio/io/format/tests/data/stockholm_data_only     |   5 +
 .../tests/data/stockholm_differing_gc_data_length  |   4 +
 .../tests/data/stockholm_differing_gr_data_length  |   4 +
 .../tests/data/stockholm_differing_seq_lengths     |   4 +
 skbio/io/format/tests/data/stockholm_duplicate_gc  |   7 +
 skbio/io/format/tests/data/stockholm_duplicate_gr  |   8 +
 .../tests/data/stockholm_duplicate_sequence_names  |   6 +
 .../format/tests/data/stockholm_duplicate_tree_ids |   6 +
 skbio/io/format/tests/data/stockholm_extensive     |  15 +
 .../io/format/tests/data/stockholm_extensive_mixed |  15 +
 .../format/tests/data/stockholm_invalid_data_type  |   4 +
 .../tests/data/stockholm_invalid_nonexistent_gr    |   7 +
 .../tests/data/stockholm_invalid_nonexistent_gs    |   5 +
 .../tests/data/stockholm_malformed_data_line       |   3 +
 .../format/tests/data/stockholm_malformed_gc_line  |   4 +
 .../format/tests/data/stockholm_malformed_gf_line  |   3 +
 .../format/tests/data/stockholm_malformed_gr_line  |   4 +
 .../format/tests/data/stockholm_malformed_gs_line  |   4 +
 skbio/io/format/tests/data/stockholm_metadata_only |   4 +
 skbio/io/format/tests/data/stockholm_minimal       |   3 +
 .../io/format/tests/data/stockholm_missing_footer  |   4 +
 .../io/format/tests/data/stockholm_missing_header  |   4 +
 skbio/io/format/tests/data/stockholm_multiple_msa  |  18 +
 .../io/format/tests/data/stockholm_multiple_trees  |   8 +
 skbio/io/format/tests/data/stockholm_no_data       |   2 +
 .../format/tests/data/stockholm_nonstring_labels   |   7 +
 skbio/io/format/tests/data/stockholm_rna           |   9 +
 skbio/io/format/tests/data/stockholm_runon_gf      |   5 +
 skbio/io/format/tests/data/stockholm_runon_gs      |   5 +
 .../tests/data/stockholm_single_tree_with_id       |   4 +
 .../tests/data/stockholm_single_tree_without_id    |   3 +
 .../tests/data/stockholm_two_of_each_metadata      |  11 +
 .../tests/data/stockholm_whitespace_only_lines     |   5 +
 skbio/io/format/tests/test_base.py                 |   4 +-
 skbio/io/format/tests/test_clustal.py              |  15 +-
 skbio/io/format/tests/test_fasta.py                |  17 +-
 skbio/io/format/tests/test_fastq.py                |  17 +-
 skbio/io/format/tests/test_genbank.py              |  15 +-
 skbio/io/format/tests/test_stockholm.py            | 701 ++++++++++++++++++++
 skbio/io/registry.py                               |  28 +-
 skbio/io/tests/test_registry.py                    |  36 +-
 skbio/io/tests/test_util.py                        |  36 +-
 skbio/sequence/__init__.py                         |  13 +-
 skbio/sequence/_dna.py                             |  33 +-
 .../{_iupac_sequence.py => _grammared_sequence.py} | 189 +++++-
 skbio/sequence/_nucleotide_mixin.py                |   2 +-
 skbio/sequence/_protein.py                         |  39 +-
 skbio/sequence/_rna.py                             |  33 +-
 skbio/sequence/_sequence.py                        |  90 ++-
 skbio/sequence/distance.py                         | 115 ++++
 skbio/sequence/tests/test_distance.py              | 130 ++++
 skbio/sequence/tests/test_dna.py                   |   6 +
 skbio/sequence/tests/test_grammared_sequence.py    | 613 ++++++++++++++++++
 skbio/sequence/tests/test_iupac_sequence.py        | 506 ---------------
 skbio/sequence/tests/test_nucleotide_sequences.py  |  27 +-
 skbio/sequence/tests/test_protein.py               |   6 +
 skbio/sequence/tests/test_rna.py                   |   5 +
 skbio/sequence/tests/test_sequence.py              | 216 +++++--
 skbio/stats/composition.py                         |  28 +-
 skbio/stats/distance/_base.py                      |   4 +-
 skbio/stats/distance/tests/test_base.py            |  53 +-
 .../ordination/tests/test_redundancy_analysis.py   |   2 +
 skbio/stats/power.py                               |  14 +-
 skbio/stats/tests/test_composition.py              |  20 +-
 skbio/stats/tests/test_gradient.py                 |  42 +-
 skbio/tree/_tree.py                                |  67 +-
 skbio/tree/tests/test_tree.py                      |  13 +
 skbio/util/__init__.py                             |  15 +-
 skbio/util/_decorator.py                           |   3 +-
 skbio/util/_misc.py                                |  22 +-
 skbio/util/_testing.py                             |  27 +-
 skbio/util/_warning.py                             |  14 +-
 skbio/util/tests/test_decorator.py                 |   9 +-
 skbio/util/tests/test_misc.py                      |   2 +-
 106 files changed, 3543 insertions(+), 1073 deletions(-)
 delete mode 100644 debian/patches/0003-Force-use-of-Agg-backend-no-X-for-matplotlib.patch
 delete mode 100644 debian/patches/0004-Don-t-build-pdf-figures.patch
 delete mode 100644 debian/patches/0005-Fix-test-failure-patch-from-upstream.patch
 delete mode 100644 debian/patches/0006-Remove-broken-test-on-upstream-suggestion.patch
 delete mode 100644 debian/patches/gzip-fix
 rename debian/patches/{0005-Set-mathjax-path-to-debian-s-copy.patch => mathjax-path} (100%)
 create mode 100644 skbio/io/format/stockholm.py
 create mode 100644 skbio/io/format/tests/data/stockholm_all_data_types
 create mode 100644 skbio/io/format/tests/data/stockholm_blank_lines
 create mode 100644 skbio/io/format/tests/data/stockholm_data_only
 create mode 100644 skbio/io/format/tests/data/stockholm_differing_gc_data_length
 create mode 100644 skbio/io/format/tests/data/stockholm_differing_gr_data_length
 create mode 100644 skbio/io/format/tests/data/stockholm_differing_seq_lengths
 create mode 100644 skbio/io/format/tests/data/stockholm_duplicate_gc
 create mode 100644 skbio/io/format/tests/data/stockholm_duplicate_gr
 create mode 100644 skbio/io/format/tests/data/stockholm_duplicate_sequence_names
 create mode 100644 skbio/io/format/tests/data/stockholm_duplicate_tree_ids
 create mode 100644 skbio/io/format/tests/data/stockholm_extensive
 create mode 100644 skbio/io/format/tests/data/stockholm_extensive_mixed
 create mode 100644 skbio/io/format/tests/data/stockholm_invalid_data_type
 create mode 100644 skbio/io/format/tests/data/stockholm_invalid_nonexistent_gr
 create mode 100644 skbio/io/format/tests/data/stockholm_invalid_nonexistent_gs
 create mode 100644 skbio/io/format/tests/data/stockholm_malformed_data_line
 create mode 100644 skbio/io/format/tests/data/stockholm_malformed_gc_line
 create mode 100644 skbio/io/format/tests/data/stockholm_malformed_gf_line
 create mode 100644 skbio/io/format/tests/data/stockholm_malformed_gr_line
 create mode 100644 skbio/io/format/tests/data/stockholm_malformed_gs_line
 create mode 100644 skbio/io/format/tests/data/stockholm_metadata_only
 create mode 100644 skbio/io/format/tests/data/stockholm_minimal
 create mode 100644 skbio/io/format/tests/data/stockholm_missing_footer
 create mode 100644 skbio/io/format/tests/data/stockholm_missing_header
 create mode 100644 skbio/io/format/tests/data/stockholm_multiple_msa
 create mode 100644 skbio/io/format/tests/data/stockholm_multiple_trees
 create mode 100644 skbio/io/format/tests/data/stockholm_no_data
 create mode 100644 skbio/io/format/tests/data/stockholm_nonstring_labels
 create mode 100644 skbio/io/format/tests/data/stockholm_rna
 create mode 100644 skbio/io/format/tests/data/stockholm_runon_gf
 create mode 100644 skbio/io/format/tests/data/stockholm_runon_gs
 create mode 100644 skbio/io/format/tests/data/stockholm_single_tree_with_id
 create mode 100644 skbio/io/format/tests/data/stockholm_single_tree_without_id
 create mode 100644 skbio/io/format/tests/data/stockholm_two_of_each_metadata
 create mode 100644 skbio/io/format/tests/data/stockholm_whitespace_only_lines
 create mode 100644 skbio/io/format/tests/test_stockholm.py
 rename skbio/sequence/{_iupac_sequence.py => _grammared_sequence.py} (71%)
 create mode 100644 skbio/sequence/distance.py
 create mode 100644 skbio/sequence/tests/test_distance.py
 create mode 100644 skbio/sequence/tests/test_grammared_sequence.py
 delete mode 100644 skbio/sequence/tests/test_iupac_sequence.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/python-skbio.git



More information about the debian-med-commit mailing list