Skip to content

Commit

Permalink
Merge pull request #349 from dbrennand/fix-python2-deepdiff
Browse files Browse the repository at this point in the history
Fix for Python 2 DeepDiff
  • Loading branch information
Michael Smith committed Sep 23, 2019
2 parents b4b65e8 + a716187 commit 5faffd3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
"""
ACIToolkit Installer using setuptools
"""
import os
import os, sys
from setuptools import setup


base_dir = os.path.dirname(__file__)

about = {}
Expand Down Expand Up @@ -35,7 +34,7 @@
"jsonschema",
"graphviz",
"ipaddress",
"deepdiff"],
"{}".format("deepdiff==3.3.0" if sys.version_info[0] == 2 else "deepdiff")],
tests_requires=["mock"],
description="This library allows basic Cisco ACI APIC configuration.",
)

0 comments on commit 5faffd3

Please sign in to comment.