From c1d5e3d609ca154642bc0520ec27db8b02835627 Mon Sep 17 00:00:00 2001 From: Rongxin Liu Date: Thu, 31 Aug 2023 14:44:45 -0400 Subject: [PATCH] fixated pycodestyle version to 2.10.0 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b79bdee..63e94b6 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ description="This is style50, with which code can be checked against the CS50 style guide", long_description=open("README.md").read(), long_description_content_type="text/markdown", - install_requires=["argparse", "autopep8>=1.4.3", "icdiff", "jsbeautifier", "pycodestyle", "python-magic", "termcolor", "jinja2>=2.10"], + install_requires=["argparse", "autopep8>=1.4.3", "icdiff", "jsbeautifier", "pycodestyle==2.10.0", "python-magic", "termcolor", "jinja2>=2.10"], dependency_links=["git+https://github.com/jeffkaufman/icdiff.git"], keywords=["style", "style50"], name="style50", @@ -26,6 +26,6 @@ "console_scripts": ["style50=style50.__main__:main"], }, url="https://github.com/cs50/style50", - version="2.7.6", + version="2.7.7", include_package_data=True, )