From 6de01533a833e7144a6d4b0305e6d7e09311bbee Mon Sep 17 00:00:00 2001 From: rlskoeser Date: Thu, 22 Jun 2023 14:34:35 -0400 Subject: [PATCH] Update python/django versions in unit test matrix, readme, and setup --- .github/workflows/unit_tests.yml | 4 ++-- README.rst | 10 +++------- setup.py | 16 ++++++---------- 3 files changed, 11 insertions(+), 19 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 846b488..c62798f 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -12,8 +12,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [3.9] - django: [3.2, 4.0] + python: [3.9, 3.10, 3.11] + django: [3.2, 4.0, 4.1, 4.2] steps: - name: Checkout repository uses: actions/checkout@v3 diff --git a/README.rst b/README.rst index 774e0f7..0ceb725 100644 --- a/README.rst +++ b/README.rst @@ -5,7 +5,7 @@ django-pucas :target: https://travis-ci.org/Princeton-CDH/django-pucas :alt: Build status -.. image:: https://codecov.io/gh/Princeton-CDH/django-pucas/branch/master/graph/badge.svg +.. image:: https://codecov.io/gh/Princeton-CDH/django-pucas/branch/main/graph/badge.svg :target: https://codecov.io/gh/Princeton-CDH/django-pucas :alt: Code Coverage @@ -13,10 +13,6 @@ django-pucas :target: https://www.codefactor.io/repository/github/princeton-cdh/django-pucas :alt: CodeFactor -.. image:: https://requires.io/github/Princeton-CDH/django-pucas/requirements.svg?branch=master - :target: https://requires.io/github/Princeton-CDH/django-pucas/requirements/?branch=master - :alt: Requirements Status - .. image:: https://img.shields.io/pypi/pyversions/viapy :alt: PyPI - Python Version @@ -35,8 +31,8 @@ support for prepopulating user account data based on an LDAP search. **django-pucas** is tested against: -* Django ``1.11-3.1`` -* Python ``3.5-3.8`` +* Django ``3.2-4.0`` +* Python ``3.9-3.11`` **django-pucas** requires **django-cas-ng** 3.6 or greater. diff --git a/setup.py b/setup.py index f2a2d78..4e47b5e 100644 --- a/setup.py +++ b/setup.py @@ -35,21 +35,17 @@ classifiers=[ "Environment :: Web Environment", "Framework :: Django", - "Framework :: Django :: 1.11", - "Framework :: Django :: 2.0", - "Framework :: Django :: 2.1", - "Framework :: Django :: 2.2", - "Framework :: Django :: 3.0", - "Framework :: Django :: 3.1", + "Framework :: Django :: 3.2", + "Framework :: Django :: 4.0", + "Framework :: Django :: 4.1", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3 :: Only", "Topic :: Internet :: WWW/HTTP", "Topic :: System :: Systems Administration :: Authentication/Directory",