Skip to content

Commit cd12ff2

Browse files
committed
Merge branch 'py3package' into develop
PR #275. * py3package: Don't build universal wheels
2 parents 0e38b11 + 36471cc commit cd12ff2

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

jmespath/__init__.py

-11
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
1-
import warnings
2-
import sys
31
from jmespath import parser
42
from jmespath.visitor import Options
53

64
__version__ = '0.10.0'
75

86

9-
if sys.version_info[:2] <= (2, 6) or ((3, 0) <= sys.version_info[:2] <= (3, 3)):
10-
python_ver = '.'.join(str(x) for x in sys.version_info[:3])
11-
12-
warnings.warn(
13-
'You are using Python {0}, which will no longer be supported in '
14-
'version 0.11.0'.format(python_ver),
15-
DeprecationWarning)
16-
17-
187
def compile(expression):
198
return parser.Parser().parse(expression)
209

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bdist_wheel]
2-
universal = 1
2+
universal = 0
33

44
[metadata]
55
license_file = LICENSE.txt

0 commit comments

Comments
 (0)