Skip to content

Commit

Permalink
Update several dependencies
Browse files Browse the repository at this point in the history
- begin adding license information
  • Loading branch information
dougpenny committed Apr 13, 2022
1 parent 1ae1f2e commit 9868c38
Show file tree
Hide file tree
Showing 11 changed files with 123 additions and 7 deletions.
8 changes: 8 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
The MIT License (MIT)
Copyright © 2022 Doug Penny

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12 changes: 12 additions & 0 deletions api/serializers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#
# serializers.py
#
# Copyright (c) 2022 Doug Penny
# Licensed under MIT
#
# See LICENSE.md for license information
#
# SPDX-License-Identifier: MIT
#


from django.contrib.auth.models import User
from rest_framework import serializers

Expand Down
12 changes: 12 additions & 0 deletions api/urls.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#
# urls.py
#
# Copyright (c) 2022 Doug Penny
# Licensed under MIT
#
# See LICENSE.md for license information
#
# SPDX-License-Identifier: MIT
#


from django.urls import path

from api import views
Expand Down
12 changes: 12 additions & 0 deletions api/views.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#
# views.py
#
# Copyright (c) 2022 Doug Penny
# Licensed under MIT
#
# See LICENSE.md for license information
#
# SPDX-License-Identifier: MIT
#


from django.contrib.auth.models import User
from django.db.models import Q
from django.utils import timezone
Expand Down
12 changes: 12 additions & 0 deletions cafeteria/admin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#
# admin.py
#
# Copyright (c) 2022 Doug Penny
# Licensed under MIT
#
# See LICENSE.md for license information
#
# SPDX-License-Identifier: MIT
#


from django.contrib import admin

from rest_framework.authtoken.admin import TokenAdmin
Expand Down
12 changes: 12 additions & 0 deletions cafeteria/management/commands/balanceaudit.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#
# balanceaudit.py
#
# Copyright (c) 2022 Doug Penny
# Licensed under MIT
#
# See LICENSE.md for license information
#
# SPDX-License-Identifier: MIT
#


import logging
from typing import List

Expand Down
12 changes: 12 additions & 0 deletions cafeteria/management/commands/balancecorrection.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#
# balancecorrection.py
#
# Copyright (c) 2022 Doug Penny
# Licensed under MIT
#
# See LICENSE.md for license information
#
# SPDX-License-Identifier: MIT
#


import logging
from decimal import Decimal

Expand Down
12 changes: 12 additions & 0 deletions cafeteria/management/commands/mark_inactive.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#
# mark_inactive.py
#
# Copyright (c) 2022 Doug Penny
# Licensed under MIT
#
# See LICENSE.md for license information
#
# SPDX-License-Identifier: MIT
#


from django.core.management.base import BaseCommand

from cafeteria.operations import check_for_inactive
Expand Down
12 changes: 12 additions & 0 deletions cafeteria/management/commands/process_eoy.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#
# process_eoy.py
#
# Copyright (c) 2022 Doug Penny
# Licensed under MIT
#
# See LICENSE.md for license information
#
# SPDX-License-Identifier: MIT
#


from django.core.management.base import BaseCommand

from constance import config
Expand Down
12 changes: 12 additions & 0 deletions cafeteria/management/commands/pssync.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
#
# pssync.py
#
# Copyright (c) 2022 Doug Penny
# Licensed under MIT
#
# See LICENSE.md for license information
#
# SPDX-License-Identifier: MIT
#


from django.core.management.base import BaseCommand, CommandError
from django.contrib.auth.models import User
from django.db.utils import IntegrityError
Expand Down
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
django==3.2.7
djangorestframework==3.12.4
django-auth-adfs==1.9.0
psycopg2-binary==2.9.1
django==3.2.13
djangorestframework==3.13.1
django-auth-adfs==1.9.5
psycopg2-binary==2.9.3
gunicorn==20.1.0
python-dotenv==0.19.0
reportlab==3.6.1
XlsxWriter==3.0.1
python-dotenv==0.20.0
reportlab==3.6.9
XlsxWriter==3.0.3
django-constance[database]==2.8.0
mozilla-django-oidc==2.0.0
django-mathfilters==1.0.0

0 comments on commit 9868c38

Please sign in to comment.