Skip to content

Commit

Permalink
Fixed broken compat with yaml in Python 3.6; fixed unused requirement…
Browse files Browse the repository at this point in the history
…s list
  • Loading branch information
jcohenadad committed Oct 10, 2020
1 parent 2de1f72 commit 8ad4078
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

from setuptools import setup

version = "0.16"
version = "0.17"

with open("README.rst", encoding="utf-8") as fi:
readme = fi.read()

requirements = [
"yaml",
"pyyaml",
]

setup(
Expand All @@ -25,7 +25,7 @@
entry_points={"console_scripts": ["distriploy = distriploy.__main__:main"]},
include_package_data=True,
python_requires=">=3.6",
install_requires=[],
install_requires=requirements,
extras_require={
"osf": ["osfclient"],
},
Expand Down

0 comments on commit 8ad4078

Please sign in to comment.