-
-
Notifications
You must be signed in to change notification settings - Fork 483
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
Rename Django's dev branch to main. #807
Conversation
Codecov Report
@@ Coverage Diff @@
## master #807 +/- ##
=======================================
Coverage 97.47% 97.47%
=======================================
Files 18 18
Lines 992 992
Branches 151 151
=======================================
Hits 967 967
Misses 12 12
Partials 13 13 Continue to review full report at Codecov.
|
@@ -5,19 +5,19 @@ on: [push, pull_request] | |||
jobs: | |||
build: | |||
name: build (Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }}) | |||
runs-on: ubuntu-latest | |||
runs-on: ubuntu-18.04 |
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.
This is basically to work around an issue with installing mysqlclient on Ubuntu 20.04 that I couldn't fix:
ImportError: libmysqlclient.so.20: cannot open shared object file: No such file or directory
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.
Hmm, I can look into this later.
Coercing OneToOneFields to be ForeignKeys on historical models causes issues when the OneToOneField is a custom subclass that includes additional arguments that do not exist on the ForeignKey.__init__ method. These additional arguments can be specified via excluded_field_kwargs to allow these custom OneToOneFields be coerced into ForeignKeys on the historical model. Fixes jazzband#807
Coercing OneToOneFields to be ForeignKeys on historical models causes issues when the OneToOneField is a custom subclass that includes additional arguments that do not exist on the ForeignKey.__init__ method. These additional arguments can be specified via excluded_field_kwargs to allow these custom OneToOneFields be coerced into ForeignKeys on the historical model. Fixes jazzband#807
Coercing OneToOneFields to be ForeignKeys on historical models causes issues when the OneToOneField is a custom subclass that includes additional arguments that do not exist on the ForeignKey.__init__ method. These additional arguments can be specified via excluded_field_kwargs to allow these custom OneToOneFields be coerced into ForeignKeys on the historical model. Fixes jazzband#807
More information: https://groups.google.com/g/django-developers/c/tctDuKUGosc/
Refs: django/django#14048