Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to astropy 5.0.3 #145

Merged
merged 5 commits into from
Mar 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,5 @@ webpack-stats.*
**/__pycache__
**/.DS_Store
**/db_data

# preserve folder structure with dummy gitinclude file
manager/config/**
!manager/config/.gitinclude
manager/media/thumbnails/**
!manager/media/thumbnails/.gitinclude
manager/ui_framework/tests/media/thumbnails/**
!manager/ui_framework/tests/media/thumbnails/.gitinclude
**/media/configs
**/media/thumbnails
1 change: 1 addition & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ pipeline {
branch "bugfix/*"
branch "hotfix/*"
branch "release/*"
branch "tickets/*"
branch "PR-*"
}
}
Expand Down
2 changes: 0 additions & 2 deletions docker/.dockerignore

This file was deleted.

2 changes: 1 addition & 1 deletion manager/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ aioredis==1.3.1
alabaster==0.7.12
asgiref==3.3.1
asn1crypto==1.3.0
astropy==4.0
astropy==5.0.3
async-timeout==3.0.1
atomicwrites==1.3.0
attrs==19.3.0
Expand Down
2 changes: 1 addition & 1 deletion manager/ui_framework/tests/tests_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def test_delete_workspace_view(self):
"The number of objects in the DB have decreased by 1",
)
with self.assertRaises(Exception):
Workspace.objects.get(pk=self.workspace_view_pk)
WorkspaceView.objects.get(pk=self.workspace_view_pk)


class WorkspaceAndViewsRelationsTestCase(TestCase):
Expand Down