Skip to content

Commit

Permalink
updating minimum versions of django and rest framework (#354)
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <[email protected]>
  • Loading branch information
vsoch authored Mar 20, 2021
1 parent 78251df commit 231b919
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ represented by the pull requests that fixed them. Critical items to know are:


## [master](https://github.com/singularityhub/sregistry/tree/master) (master)
- updating Django and Django Restframework (1.1.33)
- API endpoint to create a collection (1.1.32)
- allowing for Bearer token to have any casing (1.1.31)
- adding minio environment file to https docker-compose (1.1.3)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.32
1.1.33
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ django-rq
django-taggit
django-taggit-templatetags
django-user-agents
django==2.2.13
djangorestframework==3.10.3
django==2.2.18
djangorestframework==3.11.2
google
google-api-python-client
h5py
Expand Down
4 changes: 2 additions & 2 deletions shub/apps/api/urls/routers.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
from shub.apps.api.actions.upload import UploadUI, upload_complete

router = routers.DefaultRouter()
router.register(r"^containers", ContainerViewSet, base_name="container")
router.register(r"^collections", CollectionViewSet, base_name="collection")
router.register(r"^containers", ContainerViewSet, basename="container")
router.register(r"^collections", CollectionViewSet, basename="collection")

urlpatterns = [
url(r"^", include(router.urls)),
Expand Down

0 comments on commit 231b919

Please sign in to comment.