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
Hide whitespace changes
Inline
Side-by-side
.github/workflows/tests.yaml
View file @
f0b7839a
...
...
@@ -10,7 +10,7 @@ on:
jobs
:
test
:
name
:
"
Python
${{
matrix.python
}}
Django
${{
matrix.django
}}"
runs-on
:
ubuntu-
latest
runs-on
:
ubuntu-
20.04
strategy
:
# max-parallel: 8 # default is max available
fail-fast
:
false
...
...
@@ -18,15 +18,21 @@ jobs:
include
:
# Django 2.2
-
django
:
"
2.2"
python
:
"
3.6
.14
"
python
:
"
3.6"
# Django 3.1
-
django
:
"
3.1"
python
:
"
3.6
.14
"
python
:
"
3.6"
# Django 3.2
-
django
:
"
3.2"
python
:
"
3.6
.14
"
python
:
"
3.6"
# 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"
steps
:
...
...
@@ -34,10 +40,10 @@ jobs:
run
:
sudo apt-get install -y gettext
-
name
:
Checkout code
uses
:
actions/checkout@v
2
uses
:
actions/checkout@v
3
-
name
:
Setup Python ${{ matrix.python }}
uses
:
actions/setup-python@v
2
uses
:
actions/setup-python@v
3
with
:
python-version
:
${{ matrix.python }}
...
...
CHANGES.rst
View file @
f0b7839a
Changelog
=========
Changes in 3.1 (2023-05-12)
---------------------------
* Fixed compatibility for Django 4.1, 4.2
Version 3.0 (2021-11-16)
------------------------
...
...
private_storage/__init__.py
View file @
f0b7839a
# following PEP 440
__version__
=
"3.
0
"
__version__
=
"3.
1
"
tox.ini
View file @
f0b7839a
[tox]
envlist
=
py38-django{22,31,32},
py38-django{22,31,32
,41,42
},
py38-django-dev,
coverage,
...
...
@@ -16,6 +16,8 @@ deps =
django30:
Django~=3.0
django31:
Django~=3.1
django32:
Django~=3.2
django41:
Django~=4.1
django42:
Django~=4.2
django-dev:
https://github.com/django/django/tarball/main
commands
=
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