Skip to content

Commit 590bd43

Browse files
committed
[deps] Maintenance
1 parent d4e933c commit 590bd43

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

Diff for: .github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
build:
1515
name: Python==${{ matrix.python-version }} | ${{ matrix.django-version }}
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-22.04
1717

1818
services:
1919
redis:
@@ -25,11 +25,11 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
python-version:
28-
- 3.8
2928
- 3.9
29+
- 3.10
3030
django-version:
3131
- django~=3.2.0
32-
- django~=4.0.0
32+
- django~=4.2.0
3333

3434
steps:
3535
- uses: actions/checkout@v2

Diff for: requirements-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
coveralls
2-
openwisp-utils[qa]~=1.0.0
2+
openwisp-utils[qa]>=1.0.0,<1.2.0
33
django-redis

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
openwisp-controller~=1.0.0
1+
openwisp-controller>=1.0.0,<1.2.0

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def get_install_requires():
5050
zip_safe=False,
5151
install_requires=get_install_requires(),
5252
classifiers=[
53-
'Development Status :: 3 - Alpha',
53+
'Development Status :: 5 - Production/Stable ',
5454
'Environment :: Web Environment',
5555
'Topic :: Internet :: WWW/HTTP',
5656
'Intended Audience :: Developers',

Diff for: tests/openwisp2/settings.py

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
'django.contrib.sessions.middleware.SessionMiddleware',
6969
'django.middleware.common.CommonMiddleware',
7070
'django.middleware.csrf.CsrfViewMiddleware',
71+
'allauth.account.middleware.AccountMiddleware',
7172
'django.contrib.auth.middleware.AuthenticationMiddleware',
7273
'django.contrib.messages.middleware.MessageMiddleware',
7374
'django.middleware.clickjacking.XFrameOptionsMiddleware',

0 commit comments

Comments
 (0)