Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Exner-Kittridge authored and Mike Exner-Kittridge committed Mar 14, 2018
1 parent 8ce50db commit 2905b3c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion hilltoppy/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
"""
from os import path
from datetime import datetime
from configparser import ConfigParser
try:
from configparser import ConfigParser
except ImportError:
from ConfigParser import SafeConfigParser as ConfigParser


def parse_dsn(dsn_path):
Expand Down
1 change: 0 additions & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ requirements:
- python
- pandas
- pywin32
- configparser

about:
home: https://github.com/mullenkamp/hilltop-py
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
#
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=['pandas', 'pywin32', 'configparser'], # Optional
install_requires=['pandas', 'pywin32'], # Optional

# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
Expand Down

0 comments on commit 2905b3c

Please sign in to comment.