Commit dc635cd2 authored by Steffen Möller's avatar Steffen Möller
Browse files

New upstream version 0.8.0

parent 44293af7
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2,9 +2,11 @@ language: python
python:
  # - "2.7"
  # - "pypy"
  - "3.4"
  # - "3.4"
  - "3.5"
  - "3.6"
  - "3.7"
  - "3.8"

# Install numpy, then BioPython
# BioPython doesn't always play well with pip install.
+9 −0
Original line number Diff line number Diff line
Changes for seqmagick
=====================

0.8.0
-----

* Supports Python 3.5+
* Drops support for Python 3.4
* Fix issue: "seqmagick with no params gives KeyError:None" [GH-77]
* Fix for Biopython 1.71 dual coding support [GH-76]; also fixes issue: "Translation error with new BioPython" [GH-79]
* Send logging to stderr, not stdout [GH-75]

0.7.0
-----

+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ Use pip::
Note that as of version 0.7.0, this package requires Python 3.4+. If
you want to use the most recent version compatible with Python 2.7::

  pip install seqmagick==1.6.2
  pip install seqmagick==0.6.2

Features
========

requirements-rtd.txt

0 → 100644
+2 −0
Original line number Diff line number Diff line
biopython
sphinx
+3 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ def main(argv=sys.argv[1:]):
        logformat = '%(message)s'

    # set up logging
    logging.basicConfig(stream=sys.stdout, format=logformat, level=loglevel)
    logging.basicConfig(stream=sys.stderr, format=logformat, level=loglevel)

    return action(arguments)

@@ -65,6 +65,8 @@ def parse_arguments(argv):
    arguments.argv = argv
    action = arguments.subparser_name

    if action is None:
        parse_arguments(['-h'])
    if action == 'help':
        return parse_arguments([str(arguments.action), '-h'])

Loading