From 202f40bc449e46d9cfaf4298ecf9a32fdb7c51e6 Mon Sep 17 00:00:00 2001 From: Tobias Macey Date: Tue, 2 Jun 2020 11:59:36 -0400 Subject: [PATCH] Fixing python version specifier so it installs on edX --- gitreload/__init__.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gitreload/__init__.py b/gitreload/__init__.py index 14b2c12..1a869a1 100644 --- a/gitreload/__init__.py +++ b/gitreload/__init__.py @@ -3,4 +3,4 @@ installation. """ -VERSION = '0.2.0' +VERSION = '0.2.2' diff --git a/pyproject.toml b/pyproject.toml index a22024a..af095f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gitreload" -version = "0.2.0" +version = "0.2.2" description = "Service for triggering edX course imports from Github webhooks" authors = ["MIT Open Learning "] license = "AGPL-3.0" @@ -22,7 +22,7 @@ classifiers=[ gitreload = "gitreload.web:run_web" [tool.poetry.dependencies] -python = "^3.6" +python = "^3.5" flask = "^1.1.2" gunicorn = "^20.0.4" gitpython = "^3.1.3"