Skip to content

Commit

Permalink
Merge pull request #409 from camptocamp/fix-packages-version
Browse files Browse the repository at this point in the history
Fix package version
  • Loading branch information
sbrunner authored Jan 31, 2022
2 parents ff7deed + 599c4ae commit 5e175da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

config = configparser.ConfigParser()
config.read(os.path.join(HERE, "Pipfile"))
INSTALL_REQUIRES = [pkg.strip('"') for pkg in config["packages"].keys()]
INSTALL_REQUIRES = [pkg.strip('"') + version.strip('"') for pkg, version in config["packages"].items()]


def long_description() -> str:
Expand Down

0 comments on commit 5e175da

Please sign in to comment.