Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Websites UFRPE
Django Private Storage
Commits
f0b7839a
Unverified
Commit
f0b7839a
authored
May 13, 2023
by
Antonio Morillas
Committed by
GitHub
May 13, 2023
Browse files
Update for Django 4.1, 4.2 (#87)
Update for Django 4.1, 4.2
parent
eb97e44a
Changes
4
Show whitespace changes
Inline
Side-by-side
.github/workflows/tests.yaml
View file @
f0b7839a
...
@@ -10,7 +10,7 @@ on:
...
@@ -10,7 +10,7 @@ on:
jobs
:
jobs
:
test
:
test
:
name
:
"
Python
${{
matrix.python
}}
Django
${{
matrix.django
}}"
name
:
"
Python
${{
matrix.python
}}
Django
${{
matrix.django
}}"
runs-on
:
ubuntu-
latest
runs-on
:
ubuntu-
20.04
strategy
:
strategy
:
# max-parallel: 8 # default is max available
# max-parallel: 8 # default is max available
fail-fast
:
false
fail-fast
:
false
...
@@ -18,15 +18,21 @@ jobs:
...
@@ -18,15 +18,21 @@ jobs:
include
:
include
:
# Django 2.2
# Django 2.2
-
django
:
"
2.2"
-
django
:
"
2.2"
python
:
"
3.6
.14
"
python
:
"
3.6"
# Django 3.1
# Django 3.1
-
django
:
"
3.1"
-
django
:
"
3.1"
python
:
"
3.6
.14
"
python
:
"
3.6"
# Django 3.2
# Django 3.2
-
django
:
"
3.2"
-
django
:
"
3.2"
python
:
"
3.6
.14
"
python
:
"
3.6"
# Django 4.0
# Django 4.0
-
django
:
"
4.0b1"
-
django
:
"
4.0"
python
:
"
3.10"
# Django 4.1
-
django
:
"
4.1"
python
:
"
3.10"
# Django 4.2
-
django
:
"
4.2"
python
:
"
3.10"
python
:
"
3.10"
steps
:
steps
:
...
@@ -34,10 +40,10 @@ jobs:
...
@@ -34,10 +40,10 @@ jobs:
run
:
sudo apt-get install -y gettext
run
:
sudo apt-get install -y gettext
-
name
:
Checkout code
-
name
:
Checkout code
uses
:
actions/checkout@v
2
uses
:
actions/checkout@v
3
-
name
:
Setup Python ${{ matrix.python }}
-
name
:
Setup Python ${{ matrix.python }}
uses
:
actions/setup-python@v
2
uses
:
actions/setup-python@v
3
with
:
with
:
python-version
:
${{ matrix.python }}
python-version
:
${{ matrix.python }}
...
...
CHANGES.rst
View file @
f0b7839a
Changelog
Changelog
=========
=========
Changes in 3.1 (2023-05-12)
---------------------------
* Fixed compatibility for Django 4.1, 4.2
Version 3.0 (2021-11-16)
Version 3.0 (2021-11-16)
------------------------
------------------------
...
...
private_storage/__init__.py
View file @
f0b7839a
# following PEP 440
# following PEP 440
__version__
=
"3.
0
"
__version__
=
"3.
1
"
tox.ini
View file @
f0b7839a
[tox]
[tox]
envlist
=
envlist
=
py38-django{22,31,32},
py38-django{22,31,32
,41,42
},
py38-django-dev,
py38-django-dev,
coverage,
coverage,
...
@@ -16,6 +16,8 @@ deps =
...
@@ -16,6 +16,8 @@ deps =
django30:
Django~=3.0
django30:
Django~=3.0
django31:
Django~=3.1
django31:
Django~=3.1
django32:
Django~=3.2
django32:
Django~=3.2
django41:
Django~=4.1
django42:
Django~=4.2
django-dev:
https://github.com/django/django/tarball/main
django-dev:
https://github.com/django/django/tarball/main
commands
=
commands
=
python
runtests.py
python
runtests.py
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment