-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds support for Django 5 and Moves to Github Actions for core CI/CD (#…
…615) * Support Django5+ * Test GHA * Adds tests * Updates tox to test Django 5 * Corrects Python version * Adds support for Django 5 and Switches to Github Actions --------- Co-authored-by: q0w <[email protected]>
- Loading branch information
Showing
21 changed files
with
131 additions
and
124 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[flake8] | ||
per-file-ignores = | ||
dj_rest_auth/tests/test_serializers.py:E501,F401 | ||
dj_rest_auth/serializers.py:E501 | ||
dj_rest_auth/jwt_auth.py:E501 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,89 @@ | ||
name: Release to PyPi | ||
on: [push] | ||
name: Lint, Build and Test | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
name: Lint | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.8 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install flake8 | ||
- name: Lint | ||
run: flake8 dj_rest_auth/ --append-config ./.flake8 | ||
build: | ||
name: Publish | ||
runs-on: ubuntu-latest | ||
name: Build | ||
needs: [lint] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.8 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
- name: Build | ||
run: python3 setup.py sdist | ||
- name: Store artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist/ | ||
test: | ||
runs-on: ubuntu-20.04 | ||
name: Test Python ${{ matrix.python-version }} + Django ~= ${{ matrix.django-version }} | ||
needs: [build] | ||
strategy: | ||
matrix: | ||
python-version: ['3.8', '3.9', '3.10', '3.11'] | ||
django-version: ['3.2', '4.2', '5.0'] | ||
exclude: | ||
- python-version: '3.8' | ||
django-version: '5.0' | ||
- python-version: '3.9' | ||
django-version: '5.0' | ||
steps: | ||
- name: Publish package | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | ||
uses: pypa/gh-action-pypi-publish@master | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
pip install -r dj_rest_auth/tests/requirements.pip | ||
pip install "Django~=${{ matrix.django-version }}.0" | ||
- name: Run Tests | ||
run: | | ||
echo "$(python --version) / Django $(django-admin --version)" | ||
coverage run ./runtests.py | ||
- name: Generate Coverage Report | ||
run: | | ||
mkdir -p test-results/ | ||
coverage report | ||
coverage xml | ||
- name: Code Coverage Summary Report | ||
uses: irongut/[email protected] | ||
with: | ||
filename: coverage.xml | ||
- name: Store test results | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.pypi_password }} | ||
name: results-${{ matrix.python-version }}-${{ matrix.django-version }} | ||
path: test-results/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
__title__ = 'dj-rest-auth' | ||
__description__ = 'Authentication and Registration in Django Rest Framework.' | ||
__url__ = 'http://github.com/iMerica/dj-rest-auth' | ||
__version__ = '5.1.0' | ||
__version__ = '6.0.0' | ||
__author__ = '@iMerica https://github.com/iMerica' | ||
__author_email__ = '[email protected]' | ||
__license__ = 'MIT' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
coveralls==1.11.1 | ||
django-allauth==0.61.1 | ||
django>=2.2,<5.0 | ||
djangorestframework-simplejwt==4.6.0 | ||
djangorestframework-simplejwt>=5.3.1 | ||
flake8==3.8.4 | ||
responses==0.12.1 | ||
unittest-xml-reporting==3.0.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.