-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from observatorycontrolsystem/fix/upgrade-vers…
…ions Upgrade to Django 4
- Loading branch information
Showing
11 changed files
with
616 additions
and
662 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2.4.0 | ||
2024-01-31 | ||
|
||
Update to django 4 and related dependency updates. | ||
|
||
2.3.7 | ||
2024-01-03 | ||
|
||
|
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,4 +1,4 @@ | ||
FROM python:3.8-slim AS app | ||
FROM python:3.10-slim AS app | ||
|
||
# Set working directory | ||
WORKDIR /app | ||
|
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,6 +1,6 @@ | ||
from django.conf.urls import url | ||
from django.urls import re_path | ||
from archive.authentication import views | ||
|
||
urlpatterns = [ | ||
url(r'^profile/$', views.UserView.as_view(), name='profile'), | ||
re_path(r'^profile/$', views.UserView.as_view(), name='profile'), | ||
] |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,37 +1,36 @@ | ||
[tool.poetry] | ||
name = "science-archive" | ||
version = "2.3.7" | ||
version = "2.4.0" | ||
description = "" | ||
authors = ["Jashandeep Sohi <[email protected]>"] | ||
readme = "README.md" | ||
packages = [{include = "archive"}] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
django = "^3.2" | ||
django = "^4" | ||
psycopg2 = "~2.9" | ||
django-filter = ">=2.2,<2.5" | ||
djangorestframework = ">=3.12,<3.13" | ||
PyYAML = ">=5.4" | ||
boto3 = "~1.24" | ||
django-filter = "^21.1" | ||
djangorestframework = "^3.13" | ||
PyYAML = "^6.0" | ||
boto3 = "<2.0" | ||
astropy = "~5.1.0" | ||
django-crispy-forms = ">=1.14,<2" | ||
Markdown = ">=3.0,<3.1" | ||
gunicorn = {version = "20.1.0", extras = ["gevent"]} | ||
django-cors-headers = ">=3.4,<4.0" | ||
drf-yasg = ">=1.20,<1.21" | ||
django-cors-headers = ">=3.11,<4.0" | ||
drf-yasg = "^1.21" | ||
python3-memcached = ">=1.51,<2.0" | ||
uritemplate = "3.0.1" | ||
kombu = ">=4.6,<4.7" | ||
ocs-authentication = "0.1.0" | ||
ocs-authentication = "0.2.2" | ||
setuptools-scm = "6.0.1" | ||
requests = ">2.0,<3.0" | ||
django-extensions = "^3.2.1" | ||
lcogt-logging = "^0.3.2" | ||
pytz = "^2022.2.1" | ||
django-redis = "^5.2.0" | ||
ocs-archive = "0.2.9" | ||
|
||
ocs-archive = "0.3.0" | ||
urllib3 = "<2.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
flake8 = "^5.0.4" | ||
|