Skip to content

Commit

Permalink
Merge ffe6d7d into 56e522e
Browse files Browse the repository at this point in the history
  • Loading branch information
KOliver94 committed Apr 8, 2023
2 parents 56e522e + ffe6d7d commit ae14e91
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: '3.9'
cache: pip
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -15,22 +15,28 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
django-version:
- '32'
- '41'
- '42'
exclude:
- python-version: '3.7'
django-version: '41'
- python-version: '3.7'
django-version: '42'
- python-version: '3.11'
django-version: '32'
env:
PYTHON_VERSION: ${{ matrix.python-version }}
DJANGO_VERSION: ${{ matrix.django-version }}
PYTHONUNBUFFERED: 1

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@v3
with:
python-version: ${{ matrix.python-version }}
cache: pip
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -14,8 +14,8 @@ OAuth signin with django rest framework.
Requirements
-----------

- python (3.7, 3.8, 3.9, 3.10)
- django (3.2, 4.1)
- python (3.7, 3.8, 3.9, 3.10, 3.11)
- django (3.2, 4.1, 4.2)
- djangorestframework (>=3.9, <4.0)
- social-auth-core (>=4.3, <5.0)
- social-auth-app-django (>=5.0, <6.0)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,4 +1,4 @@
django>=3.2,<4.2
django>=3.2,<4.3
djangorestframework<4.0
social-auth-core>=4.3,<5.0
social-auth-app-django>=5.0,<6.0
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -65,6 +65,7 @@ def __read(fname):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Utilities',
],
)
9 changes: 6 additions & 3 deletions tox.ini
@@ -1,9 +1,10 @@
[tox]
envlist=
py{37}-django{32}
py{38}-django{32, 41}
py{39}-django{32, 41}
py{310}-django{32, 41}
py{38}-django{32, 41, 42}
py{39}-django{32, 41, 42}
py{310}-django{32, 41, 42}
py{311}-django{41, 42}

[testenv]
setenv =
Expand All @@ -14,6 +15,7 @@ basepython =
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
deps =
djangorestframework<4.0
social-auth-core==4.3.0
Expand All @@ -24,6 +26,7 @@ deps =
coverage
django32: Django>=3.2,<3.3
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
-rrequirements_test.txt
commands =
coverage run --source=rest_social_auth -m pytest {posargs}
Expand Down

0 comments on commit ae14e91

Please sign in to comment.