Skip to content

Commit

Permalink
Merge pull request #36 from finn0/enhance/switch-to-https
Browse files Browse the repository at this point in the history
[Enhance] switch to https URL
  • Loading branch information
bmc authored Sep 15, 2020
2 parents c7ae115 + 952d72f commit 714c440
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Version 1.0.9 (Jan, 2017)
- Added time bound to README. Addresses
[Issue #15](https://github.com/bmc/munkres/issues/15).
- Versioning will now adhere to
[semantic version specification](http://semver.org).
[semantic version specification](https://semver.org).

Version 1.0.8 (June, 2016)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ from each row and column in the matrix, such that no row and no column are
used more than once.

This particular implementation is based on
<http://csclab.murraystate.edu/~bob.pilgrim/445/munkres.html>.
<https://csclab.murraystate.edu/~bob.pilgrim/445/munkres.html>.

[Hungarian algorithm]: http://en.wikipedia.org/wiki/Hungarian_algorithm
[Hungarian algorithm]: https://en.wikipedia.org/wiki/Hungarian_algorithm

See the docs on the [project page][] for more details.

Expand All @@ -30,7 +30,7 @@ If you need to use this package with Python 2, install an earlier version.
See [the installation instructions](http://software.clapper.org/munkres/#installing)
for details.

[project page]: http://software.clapper.org/munkres/
[project page]: https://software.clapper.org/munkres/

## Copyright

Expand Down
4 changes: 2 additions & 2 deletions munkres.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
(also called the Hungarian algorithm or the Kuhn-Munkres algorithm),
useful for solving the Assignment Problem.
For complete usage documentation, see: http://software.clapper.org/munkres/
For complete usage documentation, see: https://software.clapper.org/munkres/
"""

__docformat__ = 'markdown'
Expand Down Expand Up @@ -35,7 +35,7 @@
# Info about the module
__version__ = "1.1.2"
__author__ = "Brian Clapper, bmc@clapper.org"
__url__ = "http://software.clapper.org/munkres/"
__url__ = "https://software.clapper.org/munkres/"
__copyright__ = "(c) 2008-2019 Brian M. Clapper"
__license__ = "Apache Software License"

Expand Down

0 comments on commit 714c440

Please # to comment.