bump django to 3.2

This commit is contained in:
tawoe 2024-10-31 12:23:11 +01:00
parent 661c9b8f93
commit c9e78bcd0b
10 changed files with 15 additions and 15 deletions

View File

@ -2,4 +2,4 @@ from django.apps import AppConfig
class AccountConfig(AppConfig):
name = 'account-list'
name = 'accountlist'

View File

@ -1,5 +1,5 @@
from django.apps import AppConfig
class CustomersConfig(AppConfig):
name = 'customers_list'
class ApiCollectionListConfig(AppConfig):
name = 'apicollectionlist'

View File

@ -2,4 +2,4 @@ from django.apps import AppConfig
class AtmsConfig(AppConfig):
name = 'atms_list'
name = 'atmlist'

View File

@ -2,4 +2,4 @@ from django.apps import AppConfig
class BanksConfig(AppConfig):
name = 'banks_list'
name = 'banklist'

View File

@ -2,4 +2,4 @@ from django.apps import AppConfig
class CustomersConfig(AppConfig):
name = 'customers_list'
name = 'customerlist'

View File

@ -2,4 +2,4 @@ from django.apps import AppConfig
class ProductsConfig(AppConfig):
name = 'products_list'
name = 'productlist'

View File

@ -1,5 +1,5 @@
from django.apps import AppConfig
class AtmsConfig(AppConfig):
name = 'atms'
class SystemViewsConfig(AppConfig):
name = 'systemviews'

View File

@ -6,6 +6,6 @@ App config for users app
from django.apps import AppConfig
class BranchesConfig(AppConfig):
"""Config for branches"""
name = 'branches'
class UsersConfig(AppConfig):
"""Config for users"""
name = 'users'

View File

@ -8,4 +8,4 @@ from django.apps import AppConfig
class WebuiConfig(AppConfig):
"""Config for config"""
name = 'Webui'
name = 'webui'

View File

@ -1,6 +1,6 @@
psycopg2
psycopg2-binary
#Django==1.11.7
Django==2.2.28
Django==3.2.25
oauthlib==3.2.2
requests==2.32.3
requests-oauthlib==1.3.1