Re: DEP 12 (Steering Council) Fully Adopted

2022-12-22 Thread mridul pandey
Awesome

On Mon, 19 Dec 2022 at 8:55 PM, Andrew Godwin  wrote:

> Hi everyone,
>
> I am pleased to report that we've completed the extended approval process
> for DEP 12, which was needed since it was a governance change. Both the
> Technical Board and the DSF Board voted to not require a vote from the
> membership on the change, so it is now officially adopted and I will begin
> implementation immediately (which is mostly going to be renaming things).
>
> Thanks everyone for your comments and help refining this DEP! You'll be
> hearing more from myself or one of the other Steering Council members soon
> about our first proper "call for feature proposals", as it'll be timed
> right after the 4.2 feature freeze in January.
>
>
> Andrew
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/89537c96-377d-4e86-8a8e-5ef738576ea2%40app.fastmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAFZKv7up_Fs-8KYU5fVsAEczbHGY6dmjjW_QvkqsqpfeVQhNNg%40mail.gmail.com.


django squashmigrations creating incorrect code?

2022-12-22 Thread Christian González

Hi devs,

before I file a bug, small check here:

I squashed my migrations using "./manage.py squashmigrations core 0003"

It squashed all existing 3 migrations, including a runPython migration 
in 0001.


The resulting migration contains this code:

   migrations.RunPython(
   code=medux.core.migrations.0001_initial.create_admin_user,
   ),

Which is not working, as Python complains:

   File
   
"/home/christian/Projekte/medux/src/medux/core/migrations/0001_squashed_0003_alter_address_id_alter_addressmapper_id_and_more.py",
   line 57
    code=medux.core.migrations.0001_initial.create_admin_user,
   ^
   SyntaxError: invalid decimal literal

So I suppose that is not intended. Is this a django bug? Should I file 
this as issue?


Cheers,

Christian


--
Dr. Christian González
https://nerdocs.at

--
You received this message because you are subscribed to the Google Groups "Django 
developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/286d7666-41eb-12ef-44b5-640993f480c3%40nerdocs.at.


Re: django squashmigrations creating incorrect code?

2022-12-22 Thread Christian González

AH, sorry. Just saw it:

# Functions from the following migrations need manual copying. # Move 
them and any dependencies into this file, then update the # RunPython 
operations to refer to the local versions: # 
medux.core.migrations.0001_initial


Am 22.12.22 um 22:12 schrieb Christian González:


Hi devs,

before I file a bug, small check here:

I squashed my migrations using "./manage.py squashmigrations core 0003"

It squashed all existing 3 migrations, including a runPython migration 
in 0001.


The resulting migration contains this code:

migrations.RunPython(
code=medux.core.migrations.0001_initial.create_admin_user,
),

Which is not working, as Python complains:

File

"/home/christian/Projekte/medux/src/medux/core/migrations/0001_squashed_0003_alter_address_id_alter_addressmapper_id_and_more.py",
line 57
code=medux.core.migrations.0001_initial.create_admin_user,
   ^
SyntaxError: invalid decimal literal

So I suppose that is not intended. Is this a django bug? Should I file 
this as issue?


Cheers,

Christian


--
Dr. Christian González
https://nerdocs.at
--
You received this message because you are subscribed to the Google 
Groups "Django developers (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/286d7666-41eb-12ef-44b5-640993f480c3%40nerdocs.at 
.


--
Dr. Christian González
https://nerdocs.at

--
You received this message because you are subscribed to the Google Groups "Django 
developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/c38d379d-5253-d70b-9cff-6e4f31616a45%40nerdocs.at.


Re: django squashmigrations creating incorrect code?

2022-12-22 Thread Naresh Pahariya
Good to know.

On Fri, Dec 23, 2022, 02:43 Christian González <
christian.gonza...@nerdocs.at> wrote:

> AH, sorry. Just saw it:
>
> # Functions from the following migrations need manual copying.# Move them and 
> any dependencies into this file, then update the# RunPython operations to 
> refer to the local versions:# medux.core.migrations.0001_initial
>
>
> Am 22.12.22 um 22:12 schrieb Christian González:
>
> Hi devs,
>
> before I file a bug, small check here:
>
> I squashed my migrations using "./manage.py squashmigrations  core 0003"
>
> It squashed all existing 3 migrations, including a runPython migration in
> 0001.
>
> The resulting migration contains this code:
>
> migrations.RunPython(
> code=medux.core.migrations.0001_initial.create_admin_user,
> ),
>
> Which is not working, as Python complains:
>
> File
> "/home/christian/Projekte/medux/src/medux/core/migrations/0001_squashed_0003_alter_address_id_alter_addressmapper_id_and_more.py",
> line 57
> code=medux.core.migrations.0001_initial.create_admin_user,
>^
> SyntaxError: invalid decimal literal
>
> So I suppose that is not intended. Is this a django bug? Should I file
> this as issue?
>
> Cheers,
>
> Christian
>
>
> --
> Dr. Christian Gonzálezhttps://nerdocs.at
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/286d7666-41eb-12ef-44b5-640993f480c3%40nerdocs.at
> 
> .
>
> --
> Dr. Christian Gonzálezhttps://nerdocs.at
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django developers (Contributions to Django itself)" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-developers+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-developers/c38d379d-5253-d70b-9cff-6e4f31616a45%40nerdocs.at
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django developers  (Contributions to Django itself)" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-developers+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-developers/CAMpxr5qsER_bAizPQtuU4CvhH5xQnxirsuh8%3DFeeKHruZ5rp-g%40mail.gmail.com.