Skip to content

Commit

Permalink
TST: remove checking is python >= 3.4 (#1446)
Browse files Browse the repository at this point in the history
Signed-off-by: Tomasz Kłoczko <kloczek@github.com>
  • Loading branch information
kloczek authored Oct 22, 2024
1 parent 2a315af commit 866a63f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/test_proj.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import concurrent.futures
import math
import os
import sys
import unittest
from unittest.mock import patch

Expand Down Expand Up @@ -159,9 +158,6 @@ def test_latlong_typeerror(self):
lon, lat = transform(p, p.to_latlong(), 200000, 400000)


@unittest.skipIf(
sys.version_info < (3, 4), "Python 3.4 or newer required for subTest()"
)
class ForwardInverseTest(unittest.TestCase):
def test_fwd_inv(self):
for pj in pj_list.keys():
Expand Down

0 comments on commit 866a63f

Please sign in to comment.