Skip to content

Commit

Permalink
more py27-related fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dwhswenson committed Sep 17, 2020
1 parent fdeca88 commit 091a949
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion devtools/setup_cfg_reqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def main(setup_cfg, extra):
reqs = config.get('options', 'install_requires')
else:
# reqs = config['options.extras_require'][extra]
reqs = config.get('options', 'extras_require', extra)
reqs = config.get('options.extras_require', extra)
return clean(reqs)

if __name__ == "__main__":
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ install_requires =
matplotlib
ujson<2
mdtraj
# mdtraj is not technically required, but we co-package it because it is
# required for many integrations with other packages
# mdtraj is not technically required, but we co-package it because it is
# required for many integrations with other packages
packages = find:

[options.extras_require]
Expand Down

0 comments on commit 091a949

Please sign in to comment.