From c29d9c04bde05049a37bfcf43075e3f9dd53a994 Mon Sep 17 00:00:00 2001 From: Chad Sharp Date: Thu, 15 Aug 2019 18:19:15 -0400 Subject: [PATCH 1/3] update lib50 dep --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3423f91..7999c86 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ 'submit50': [('**.py', 'python', None),], }, description="This is submit50, with which you can submit solutions to problems for CS50.", - install_requires=["lib50>=1.1.5", "requests>=2.19", "termcolor>=1.1"], + install_requires=["lib50>=1.1.5,<1.3", "requests>=2.19", "termcolor>=1.1"], keywords=["submit", "submit50"], name="submit50", python_requires=">=3.6", From ca6f5f1669f04471eb32e06e8e4583537cebe01d Mon Sep 17 00:00:00 2001 From: Chad Sharp Date: Thu, 15 Aug 2019 18:20:54 -0400 Subject: [PATCH 2/3] update dependencies --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7999c86..f9887c4 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,6 @@ entry_points={ "console_scripts": ["submit50=submit50.__main__:main"] }, - version="3.0.1", + version="3.0.2", include_package_data=True ) From 936173fabfdb35e6dae36888b8bcfef33c1d15c1 Mon Sep 17 00:00:00 2001 From: Chad Sharp Date: Fri, 16 Aug 2019 12:42:27 -0400 Subject: [PATCH 3/3] update lib50 again --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f9887c4..c96431c 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ 'submit50': [('**.py', 'python', None),], }, description="This is submit50, with which you can submit solutions to problems for CS50.", - install_requires=["lib50>=1.1.5,<1.3", "requests>=2.19", "termcolor>=1.1"], + install_requires=["lib50>=2,<3", "requests>=2.19", "termcolor>=1.1"], keywords=["submit", "submit50"], name="submit50", python_requires=">=3.6",