Skip to content

Commit

Permalink
Version 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bmc committed Sep 15, 2020
1 parent a733b17 commit ef273e3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log, munkres.py

Version 1.1.3 (September, 2020)

- Switched from Nose to Pytest for testing. Patch courtesy @kmosiejczuk,
[PR #32](/~https://github.com/bmc/munkres/pull/32), with some additional
cleanup by me.
- Fix to [Issue #34](/~https://github.com/bmc/munkres/issues/34), in which
`print_matrix` wasn't handling non-integral values. Patch courtesy @finn0,
via [PR #35](/~https://github.com/bmc/munkres/pull/35).
- Various changes from `http:` URLs to `https:` URLs, courtesy @finn0
via [PR #36](/~https://github.com/bmc/munkres/pull/36/).

Version 1.1.2 (February, 2019)

- Removed `NoReturn` type annotations, to allow compatibility with Python 3.5
Expand Down
4 changes: 2 additions & 2 deletions munkres.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
Matrix = NewType('Matrix', Sequence[Sequence[AnyNum]])

# Info about the module
__version__ = "1.1.2"
__version__ = "1.1.3"
__author__ = "Brian Clapper, bmc@clapper.org"
__url__ = "https://software.clapper.org/munkres/"
__copyright__ = "(c) 2008-2019 Brian M. Clapper"
__copyright__ = "(c) 2008-2020 Brian M. Clapper"
__license__ = "Apache Software License"

# Constants
Expand Down

0 comments on commit ef273e3

Please sign in to comment.