From 2447607593b7df2be6d1c77002c1724e669a752f Mon Sep 17 00:00:00 2001 From: Nathan Gillett Date: Mon, 10 Feb 2020 10:01:18 -0500 Subject: [PATCH 1/2] Correct copyright date --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index bcdcf7ad..6a9655ea 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ # -- Project information ----------------------------------------------------- project = "cdn-lambda" -copyright = "2019, Red Hat" +copyright = "2020, Red Hat" author = "Red Hat" # The short X.Y version From 16741d25e40e8b013513267a39d2b55e8a4bbd7b Mon Sep 17 00:00:00 2001 From: Nathan Gillett Date: Mon, 10 Feb 2020 10:03:28 -0500 Subject: [PATCH 2/2] Correct Python requirement in setup.py This repository is not intended for use with Python 2, so it should only require Python 3+. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4dc62e8b..128942f9 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def get_requirements(): "Topic :: Software Development :: Libraries :: Python Modules", ], install_requires=get_requirements(), - python_requires=">=2.6", + python_requires=">=3", project_urls={ "Documentation": "https://release-engineering.github.io/cdn-lambda", "Changelog": "https://github.com/release-engineering/cdn-lambda/blob/master/CHANGELOG.md",