diff --git a/PKG-INFO b/PKG-INFO
index 0ddf8b5..2034cc9 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -6,16 +6,6 @@ Home-page: https://software.clapper.org/munkres/
 Author: Brian Clapper
 Author-email: bmc@clapper.org
 License: Apache Software License
-Description: 
-        Introduction
-        ============
-        
-        The Munkres module provides an implementation of the Munkres algorithm
-        (also called the Hungarian algorithm or the Kuhn-Munkres algorithm),
-        useful for solving the Assignment Problem.
-        
-        For complete usage documentation, see: https://software.clapper.org/munkres/
-        
 Platform: UNKNOWN
 Classifier: Intended Audience :: Developers
 Classifier: Intended Audience :: Science/Research
@@ -25,3 +15,16 @@ Classifier: Programming Language :: Python
 Classifier: Topic :: Scientific/Engineering :: Mathematics
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Description-Content-Type: text/markdown
+License-File: LICENSE.md
+
+
+Introduction
+============
+
+The Munkres module provides an implementation of the Munkres algorithm
+(also called the Hungarian algorithm or the Kuhn-Munkres algorithm),
+useful for solving the Assignment Problem.
+
+For complete usage documentation, see: https://software.clapper.org/munkres/
+
+
diff --git a/debian/changelog b/debian/changelog
index 19db266..d173da6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,10 @@
-munkres (1.1.4-3) UNRELEASED; urgency=medium
+munkres (1.1.4+git20200916.1.23d11c8-1) UNRELEASED; urgency=medium
 
   * Bump debhelper from old 12 to 13.
   * Update standards version to 4.6.0, no changes needed.
+  * New upstream snapshot.
 
- -- Debian Janitor <janitor@jelmer.uk>  Thu, 26 Aug 2021 02:45:32 -0000
+ -- Debian Janitor <janitor@jelmer.uk>  Sat, 09 Apr 2022 17:03:23 -0000
 
 munkres (1.1.4-2) unstable; urgency=medium
 
diff --git a/debian/patches/fix-32bit-tests b/debian/patches/fix-32bit-tests
index 09e12fb..d2bce30 100644
--- a/debian/patches/fix-32bit-tests
+++ b/debian/patches/fix-32bit-tests
@@ -11,10 +11,10 @@ Forwarded: https://github.com/bmc/munkres/pull/41
  test/test_munkres.py | 6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
-diff --git a/test/test_munkres.py b/test/test_munkres.py
-index b3b776e..1bbd95b 100644
---- a/test/test_munkres.py
-+++ b/test/test_munkres.py
+Index: munkres/test/test_munkres.py
+===================================================================
+--- munkres.orig/test/test_munkres.py
++++ munkres/test/test_munkres.py
 @@ -162,13 +162,13 @@ def test_profit_float():
                       [37.11, 53.12, 57.13, 78.14, 28.15],
                       [59.16, 43.17, 97.18, 88.19, 48.2],
diff --git a/munkres.egg-info/PKG-INFO b/munkres.egg-info/PKG-INFO
index 0ddf8b5..2034cc9 100644
--- a/munkres.egg-info/PKG-INFO
+++ b/munkres.egg-info/PKG-INFO
@@ -6,16 +6,6 @@ Home-page: https://software.clapper.org/munkres/
 Author: Brian Clapper
 Author-email: bmc@clapper.org
 License: Apache Software License
-Description: 
-        Introduction
-        ============
-        
-        The Munkres module provides an implementation of the Munkres algorithm
-        (also called the Hungarian algorithm or the Kuhn-Munkres algorithm),
-        useful for solving the Assignment Problem.
-        
-        For complete usage documentation, see: https://software.clapper.org/munkres/
-        
 Platform: UNKNOWN
 Classifier: Intended Audience :: Developers
 Classifier: Intended Audience :: Science/Research
@@ -25,3 +15,16 @@ Classifier: Programming Language :: Python
 Classifier: Topic :: Scientific/Engineering :: Mathematics
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Description-Content-Type: text/markdown
+License-File: LICENSE.md
+
+
+Introduction
+============
+
+The Munkres module provides an implementation of the Munkres algorithm
+(also called the Hungarian algorithm or the Kuhn-Munkres algorithm),
+useful for solving the Assignment Problem.
+
+For complete usage documentation, see: https://software.clapper.org/munkres/
+
+
diff --git a/test/test_munkres.py b/test/test_munkres.py
index b3b776e..23796dd 100644
--- a/test/test_munkres.py
+++ b/test/test_munkres.py
@@ -26,7 +26,7 @@ def float_example():
               [10.4, 3.5, 2.6],
               [8.7, 7.8, 4.9]]
     cost = _get_cost(matrix)
-    assert_almost_equal(cost, 13.5)
+    assert cost == pytest.approx(13.5)
 
 def test_5_x_5():
     matrix = [[12, 9, 27, 10, 23],