Skip to content

Commit

Permalink
BugFix: Remove dependency on pathlib for python2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcgill298 committed Oct 22, 2019
1 parent 54bf315 commit 69f2772
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,4 @@
## [0.9.2]
### Fixed
- [#256] Made setup.py work with python2.7 again

9 changes: 5 additions & 4 deletions setup.py
@@ -1,14 +1,15 @@
import pathlib
import os
from setuptools import setup, find_packages


CWD = pathlib.Path(__file__).parent
README = (CWD / "README.md").read_text()
CWD = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(CWD, "README.md")) as readme:
README = readme.read()

setup(
name='ntc-ansible',
packages=find_packages(),
version='0.9.1',
version='0.9.2',
description='Dependencies for NTC Ansible modules',
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 69f2772

Please sign in to comment.