Skip to content

Commit 866a63f

Browse files
authored
TST: remove checking is python >= 3.4 (#1446)
Signed-off-by: Tomasz Kłoczko <[email protected]>
1 parent 2a315af commit 866a63f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/test_proj.py

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import concurrent.futures
22
import math
33
import os
4-
import sys
54
import unittest
65
from unittest.mock import patch
76

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

161160

162-
@unittest.skipIf(
163-
sys.version_info < (3, 4), "Python 3.4 or newer required for subTest()"
164-
)
165161
class ForwardInverseTest(unittest.TestCase):
166162
def test_fwd_inv(self):
167163
for pj in pj_list.keys():

0 commit comments

Comments
 (0)