Skip to content

Commit

Permalink
Update github actions versions, remove python 3.6 (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
mingchen committed Feb 18, 2023
2 parents 87418a4 + 65aff3c commit 602f068
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
max-parallel: 4
matrix:
# use quotes around 3.10, 3.10 as float convert to 3.1
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
python-version: [3.7, 3.8, 3.9, "3.10"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ django-cas-ng
`django-cas-ng`_ is Django CAS (Central Authentication Service) 1.0/2.0/3.0 client
library to support SSO (Single Sign On) and Single Logout (SLO).

It supports Django 2.2, 3.0, 3.1, 3.2, 4.0 and Python 3.6+!
It supports Django 2.2, 3.0, 3.1, 3.2, 4.0 and Python 3.7+!

**NOTE:**

Expand Down Expand Up @@ -40,7 +40,7 @@ Features
- Can fetch Proxy Granting Ticket
- Supports Django 2.2, 3.0, 3.1, 3.2 and 4.0
- Supports using a `User custom model`_
- Supports Python 3.6+
- Supports Python 3.7+
- Supports typing hints in public API.

To support django 1.x and Python 2.x, please use `3.6.0`.
Expand Down
2 changes: 1 addition & 1 deletion docs/feature.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Features
- Supports fetch Proxy Granting Ticket (PGT)
- Supports Django 2.2, 3.0, 3.1, 3.2 and 4.0
- Supports using a `User custom model`_
- Supports Python 3.6+
- Supports Python 3.7+
- Supports typing hints in public API

.. _User custom model: https://docs.djangoproject.com/en/3.0/topics/auth/customizing/
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,13 @@
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'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',
'Topic :: Internet :: WWW/HTTP',
],
description='Django CAS 1.0/2.0/3.0 client authentication library, support Django 2.2, 3.0, 3.1, 3.2, 4.0 and Python 3.6+',
description='Django CAS 1.0/2.0/3.0 client authentication library, support Django 2.2, 3.0, 3.1, 3.2, 4.0 and Python 3.7+',
keywords=['django', 'cas', 'cas2', 'cas3', 'client', 'sso', 'single sign-on', 'Central Authentication Service', 'authentication', 'auth'],
license='BSD',
long_description=readme,
Expand All @@ -49,7 +48,7 @@
url='https://djangocas.dev',
download_url='https://github.com/django-cas-ng/django-cas-ng/releases',
version='4.3.0',
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=[
'Django>=2.2',
'python-cas>=1.6.0',
Expand Down

0 comments on commit 602f068

Please sign in to comment.