-
Notifications
You must be signed in to change notification settings - Fork 1
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
CORE-211 Poetry Update #13
Conversation
re_path(r'^post-view/(?P<pk>[0-9]+)', views.approved_function_view), | ||
re_path(r'^post-cbv/(?P<pk>[0-9]+)', views.ApprovedClassBasedView.as_view()), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need the regular expression or would the following also do it? I personally find this more pleasing to the eye but I'll leave it up to you.
path('post-view/<int:pk>', views.approved_function_view),
path('post-cbv/<int:pk>', views.ApprovedClassBasedView.as_view()),
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.6" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be python = "^3.10"
to match everything else?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since it's a public repo we need to support eariler versions.
re_path('^admin/', admin.site.urls), | ||
re_path('^blog/', include('example.urls')), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think using path
here should be fine and do the same thing.
path('admin/', admin.site.urls),
path('blog/', include('example.urls')),
Jira-ID: CORE-211
This PR modenizes the cd/ci pipeline for this repo.