Skip to content

Commit

Permalink
update pkg_resources & deps
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Dec 2, 2020
1 parent 742ebd4 commit ad7e1fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gitfame/_gitfame.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,8 +484,8 @@ def main(args=None):
from os import path
from shutil import copyfile

from pkg_resources import Requirement, resource_filename
fi = resource_filename(Requirement.parse('git-fame'), 'gitfame/git-fame.1')
from pkg_resources import resource_filename
fi = resource_filename(__name__, 'git-fame.1')
fo = path.join(args.manpath, 'git-fame.1')
copyfile(fi, fo)
log.info("written:" + fo)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ classifiers =
Topic :: Utilities
[options]
setup_requires = setuptools>=42; setuptools_scm[toml]>=3.4
install_requires = argopt>=0.3.5; tabulate; tqdm>=4.44.0
install_requires = argopt>=0.3.5; setuptools; tabulate; tqdm>=4.44.0
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
tests_require = nose; flake8; coverage
include_package_data = True
Expand Down

0 comments on commit ad7e1fc

Please sign in to comment.