Skip to content

Commit

Permalink
Merge pull request #406 from pnuu/ci-remove-3.7-add-3.10
Browse files Browse the repository at this point in the history
Change tested Python versions to 3.8, 3.9 and 3.10
  • Loading branch information
djhoese committed Jan 14, 2022
2 parents 3e8d244 + eb15302 commit 565966f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
fail-fast: true
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10"]
experimental: [false]
include:
- python-version: "3.9"
Expand Down
2 changes: 1 addition & 1 deletion pyresample/test/test_spherical.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class TestSCoordinate(unittest.TestCase):
def test_distance(self):
"""Test Vincenty formula."""
d = SCoordinate(0, 0).distance(SCoordinate(1, 1))
np.testing.assert_equal(d, 1.2745557823062943)
np.testing.assert_almost_equal(d, 1.2745557823062943)

def test_hdistance(self):
"""Test Haversine formula."""
Expand Down

0 comments on commit 565966f

Please sign in to comment.