Skip to content

Commit

Permalink
Restrict PyYAML version
Browse files Browse the repository at this point in the history
  • Loading branch information
Warchant authored Oct 20, 2022
1 parent 6d8ee50 commit e724a72
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
from setuptools import setup
import versioneer

with open("requirements.txt", "r") as reqfile:
requirements = [x.strip() for x in reqfile if x.strip()]

setup(
name="DockerMake",
version=versioneer.get_version(),
Expand All @@ -16,5 +13,5 @@
description="Build manager for docker images",
url="https://github.com/avirshup/dockermake",
entry_points={"console_scripts": ["docker-make = dockermake.__main__:main"]},
install_requires=["termcolor", "docker>=4", "pyyaml>=5"],
install_requires=["termcolor", "docker>=4", "pyyaml>=5,<6"],
)

0 comments on commit e724a72

Please sign in to comment.