[Git][debian-gis-team/pyosmium][master] 5 commits: New upstream version 2.14.3

Bas Couwenberg gitlab at salsa.debian.org
Thu Aug 9 05:56:50 BST 2018


Bas Couwenberg pushed to branch master at Debian GIS Project / pyosmium


Commits:
0fa0d489 by Bas Couwenberg at 2018-08-08T20:53:16Z
New upstream version 2.14.3
- - - - -
e76aeaf3 by Bas Couwenberg at 2018-08-08T20:53:18Z
Merge tag 'upstream/2.14.3'

Upstream version 2.14.3

- - - - -
59c66ae5 by Bas Couwenberg at 2018-08-08T20:53:30Z
New upstream release.

- - - - -
6d1c06fb by Bas Couwenberg at 2018-08-08T20:54:20Z
Drop patch to fix i386 test failure, included upstream.

- - - - -
f49750cc by Bas Couwenberg at 2018-08-08T21:22:12Z
Set distribution to unstable.

- - - - -


6 changed files:

- CHANGELOG.md
- debian/changelog
- − debian/patches/0001-tests-use-fuzzy-equal-for-coordinate-floats.patch
- − debian/patches/series
- src/osmium/version.py
- test/test_geom.py


Changes:

=====================================
CHANGELOG.md
=====================================
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
 
 ### Fixed
 
+## [2.14.3] - 2018-08-08
+
+### Added
+
+### Changed
+
+### Fixed
+
+- fix rounding error in tests
+
 ## [2.14.2] - 2018-08-07
 
 ### Added


=====================================
debian/changelog
=====================================
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+pyosmium (2.14.3-1) unstable; urgency=medium
+
+  * New upstream release.
+  * Drop patch to fix i386 test failure, included upstream.
+
+ -- Bas Couwenberg <sebastic at debian.org>  Wed, 08 Aug 2018 22:54:21 +0200
+
 pyosmium (2.14.2-3) unstable; urgency=medium
 
   * Add upstream patch to fix test failure on i386.


=====================================
debian/patches/0001-tests-use-fuzzy-equal-for-coordinate-floats.patch deleted
=====================================
--- a/debian/patches/0001-tests-use-fuzzy-equal-for-coordinate-floats.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Description: tests: use fuzzy equal for coordinate floats
-Author: Sarah Hoffmann <lonvia at denofr.de>
-Origin: https://github.com/osmcode/pyosmium/commit/8450ad70c6e03db5d14b5c3e725bdeb7d6733e76
-Bug: https://github.com/osmcode/pyosmium/issues/68https://github.com/osmcode/pyosmium/issues/68
-
---- a/test/test_geom.py
-+++ b/test/test_geom.py
-@@ -56,17 +56,17 @@ class TestCoordinateConversion(unittest.
- 
-     def test_lonlat_to_mercator(self):
-         c = o.geom.lonlat_to_mercator(o.geom.Coordinates(0,0))
--        assert_equals(c.x, 0)
--        assert_equals(c.y, 0)
-+        assert_almost_equals(c.x, 0)
-+        assert_almost_equals(c.y, 0)
- 
-     def test_mercator_lonlat(self):
-         c = o.geom.mercator_to_lonlat(o.geom.Coordinates(0,0))
--        assert_equals(c.x, 0)
--        assert_equals(c.y, 0)
-+        assert_almost_equals(c.x, 0)
-+        assert_almost_equals(c.y, 0)
- 
- class TestCoordinates(unittest.TestCase):
- 
-     def test_coordinate_from_location(self):
-         c = o.geom.Coordinates(o.osm.Location(10.0, -3.0))
--        assert_equals(c.x, 10.0)
--        assert_equals(c.y, -3.0)
-+        assert_almost_equals(c.x, 10.0)
-+        assert_almost_equals(c.y, -3.0)


=====================================
debian/patches/series deleted
=====================================
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-0001-tests-use-fuzzy-equal-for-coordinate-floats.patch


=====================================
src/osmium/version.py
=====================================
--- a/src/osmium/version.py
+++ b/src/osmium/version.py
@@ -5,7 +5,7 @@ Version information.
 # the major version
 pyosmium_major = '2.14'
 # current release (Pip version)
-pyosmium_release = '2.14.2'
+pyosmium_release = '2.14.3'
 
 # libosmium version shipped with the Pip release
 libosmium_version = '2.14.2'


=====================================
test/test_geom.py
=====================================
--- a/test/test_geom.py
+++ b/test/test_geom.py
@@ -56,17 +56,17 @@ class TestCoordinateConversion(unittest.TestCase):
 
     def test_lonlat_to_mercator(self):
         c = o.geom.lonlat_to_mercator(o.geom.Coordinates(0,0))
-        assert_equals(c.x, 0)
-        assert_equals(c.y, 0)
+        assert_almost_equals(c.x, 0)
+        assert_almost_equals(c.y, 0)
 
     def test_mercator_lonlat(self):
         c = o.geom.mercator_to_lonlat(o.geom.Coordinates(0,0))
-        assert_equals(c.x, 0)
-        assert_equals(c.y, 0)
+        assert_almost_equals(c.x, 0)
+        assert_almost_equals(c.y, 0)
 
 class TestCoordinates(unittest.TestCase):
 
     def test_coordinate_from_location(self):
         c = o.geom.Coordinates(o.osm.Location(10.0, -3.0))
-        assert_equals(c.x, 10.0)
-        assert_equals(c.y, -3.0)
+        assert_almost_equals(c.x, 10.0)
+        assert_almost_equals(c.y, -3.0)



View it on GitLab: https://salsa.debian.org/debian-gis-team/pyosmium/compare/4b675df1ff4a4782d3b5ae0c22eb12cae7c0df65...f49750cce469ddff7d4f8a7bac8a34dfc6c82f3a

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/pyosmium/compare/4b675df1ff4a4782d3b5ae0c22eb12cae7c0df65...f49750cce469ddff7d4f8a7bac8a34dfc6c82f3a
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20180809/d91386fa/attachment-0001.html>


More information about the Pkg-grass-devel mailing list