-
-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[deps] Added support for Django 4.1.0 and Django 4.2.0
- Dropped support for Python 3.7 - Dropped support for Django 4.0.0 - Bumped django-reversion~=5.0.4 - Bumped django-taggit~=4.0.0 - Bumped paramiko[ed25519]~=3.2.0 - Bumped django-import-export~=3.2.0 - [tests] Fixed selenium tests - [fix] Fixed CSS for jsonschema UI - [fix] Fixed flaky test_create_new_device test
- Loading branch information
1 parent
6adafe3
commit b8169d9
Showing
36 changed files
with
110 additions
and
74 deletions.
There are no files selected for viewing
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 +0,0 @@ | ||
default_app_config = 'openwisp_controller.config.apps.ConfigConfig' | ||
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 +0,0 @@ | ||
default_app_config = 'openwisp_controller.connection.apps.ConnectionConfig' | ||
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 +0,0 @@ | ||
default_app_config = 'openwisp_controller.geo.apps.GeoConfig' | ||
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 |
---|---|---|
|
@@ -114,3 +114,6 @@ def register_menu_groups(self): | |
'icon': 'ow-geo', | ||
}, | ||
) | ||
|
||
|
||
del LociConfig |
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 +0,0 @@ | ||
default_app_config = 'openwisp_controller.pki.apps.PkiConfig' | ||
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 |
---|---|---|
|
@@ -41,3 +41,6 @@ def register_menu_groups(self): | |
'icon': 'ow-cer-group', | ||
}, | ||
) | ||
|
||
|
||
del DjangoX509Config |
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 +0,0 @@ | ||
default_app_config = 'openwisp_controller.subnet_division.apps.SubnetDivisionConfig' | ||
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,11 +1,9 @@ | ||
pytest~=6.0 | ||
pytest-django~=4.5.2 | ||
pytest-asyncio~=0.14.0 | ||
pytest-cov~=2.10.0 | ||
pytest-asyncio~=0.21.0 | ||
pytest-cov~=4.1.0 | ||
openwisp-utils[qa,selenium] @ https://github.com/openwisp/openwisp-utils/tarball/master | ||
redis~=4.5.4 | ||
channels_redis~=4.1.0 | ||
django_redis~=5.2.0 | ||
mock-ssh-server~=0.9.1 | ||
responses~=0.12.1 | ||
psycopg2-binary~=2.8.0 | ||
responses~=0.23.1 | ||
psycopg2-binary~=2.9.6 |
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,18 +1,18 @@ | ||
django-sortedm2m~=3.1.1 | ||
django-reversion~=4.0.1 | ||
django-taggit~=2.1.0 | ||
django-reversion~=5.0.4 | ||
django-taggit~=4.0.0 | ||
netjsonconfig~=1.0.1 | ||
django-x509 @ https://github.com/openwisp/django-x509/tarball/master | ||
django-loci @ https://github.com/openwisp/django-loci/tarball/master | ||
django-flat-json-widget @ https://github.com/openwisp/django-flat-json-widget/tarball/master | ||
openwisp-users @ https://github.com/openwisp/openwisp-users/tarball/master | ||
openwisp-utils[celery] @ https://github.com/openwisp/openwisp-utils/tarball/master | ||
openwisp-notifications @ https://github.com/openwisp/openwisp-notifications/tarball/master | ||
openwisp-ipam @ https://github.com/openwisp/openwisp-ipam/tarball/master | ||
djangorestframework-gis~=0.18.0 | ||
paramiko[ed25519]~=2.10.3 | ||
paramiko[ed25519]~=3.2.0 | ||
scp~=0.14.2 | ||
celery~=5.2.3 | ||
django-cache-memoize~=0.1 | ||
django-cache-memoize~=0.1.0 | ||
shortuuid~=1.0.1 | ||
netaddr~=0.8.0 | ||
django-import-export~=2.8.0 | ||
django-import-export~=3.2.0 |
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 +0,0 @@ | ||
default_app_config = 'openwisp2.sample_config.apps.SampleConfigConfig' | ||
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 |
---|---|---|
|
@@ -4,3 +4,6 @@ | |
class SampleConfigConfig(ConfigConfig): | ||
name = 'openwisp2.sample_config' | ||
label = 'sample_config' | ||
|
||
|
||
del ConfigConfig |
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 +0,0 @@ | ||
default_app_config = 'openwisp2.sample_connection.apps.SampleConnectionConfig' | ||
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 +0,0 @@ | ||
default_app_config = 'openwisp2.sample_geo.apps.SampleGeoConfig' | ||
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 |
---|---|---|
|
@@ -4,3 +4,6 @@ | |
class SampleGeoConfig(GeoConfig): | ||
name = 'openwisp2.sample_geo' | ||
label = 'sample_geo' | ||
|
||
|
||
del GeoConfig |
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 +0,0 @@ | ||
default_app_config = 'openwisp2.sample_pki.apps.SamplePkiConfig' | ||
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 |
---|---|---|
|
@@ -4,3 +4,6 @@ | |
class SamplePkiConfig(PkiConfig): | ||
name = 'openwisp2.sample_pki' | ||
label = 'sample_pki' | ||
|
||
|
||
del PkiConfig |
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 +0,0 @@ | ||
default_app_config = 'openwisp2.sample_subnet_division.apps.SampleSubnetDivisionConfig' | ||
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 +0,0 @@ | ||
default_app_config = 'openwisp2.sample_users.apps.SampleUsersConfig' | ||
Oops, something went wrong.