From 85a983b85b1d1c465f2fc82e36472f8a66c23c18 Mon Sep 17 00:00:00 2001 From: moomoohk Date: Fri, 3 Sep 2021 10:45:59 +0300 Subject: [PATCH] Add Python >3 constraint Fixes #130 --- dpath/version.py | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dpath/version.py b/dpath/version.py index 311aff2..c129f68 100644 --- a/dpath/version.py +++ b/dpath/version.py @@ -1 +1 @@ -VERSION = "2.0.2" +VERSION = "2.0.3" diff --git a/setup.py b/setup.py index f85ae47..78f1484 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,7 @@ scripts=[], packages=["dpath"], data_files=[], + python_requires=">=3", classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console',