From 20ec93afc56fbd27aa1dc0dba1f54f1155858930 Mon Sep 17 00:00:00 2001 From: Jim Laney Date: Tue, 31 Aug 2021 08:10:03 -0700 Subject: [PATCH] add support for Django3.2 --- .github/workflows/cicd.yml | 3 +-- setup.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index c2a5779..b2281c5 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -47,9 +47,8 @@ jobs: strategy: matrix: django-version: - - '2.1' - '2.2' - - '3.1' + - '3.2' steps: - name: Checkout Repo diff --git a/setup.py b/setup.py index 5849357..d61373f 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ author = 'UW-IT AXDD', author_email="aca-it@uw.edu", include_package_data=True, - install_requires=['Django>=2.1,<3.2'], + install_requires=['Django>=2.2'], license='Apache License, Version 2.0', description='UW Grade Scale Conversion Calculator application', long_description=README,