public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-devel] Tagging and releases of edk2-basetools
@ 2024-02-28  1:15 Rebecca Cran
  2024-02-28  8:27 ` Laszlo Ersek
  0 siblings, 1 reply; 4+ messages in thread
From: Rebecca Cran @ 2024-02-28  1:15 UTC (permalink / raw)
  To: devel@edk2.groups.io, Liming Gao, Michael D Kinney,
	Michael Kubacki

edk2-basetools is finally fixed and releases can once again be published 
to PyPI.

However, in moving from setup.py to pyproject.toml the process has 
changed, and Joey suggested the old way might have been chosen 
deliberately to be different from edk2-pytool-library and 
edk2-pytool-extensions.


Previously it fetched the list of releases from PyPI and incremented the 
version number before publishing a new version, while it now depends on 
the git repo being tagged.


Should I work on migrating the old code and figuring out how to make it 
work with pyproject.toml?


-- 
Rebecca Cran



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#116069): https://edk2.groups.io/g/devel/message/116069
Mute This Topic: https://groups.io/mt/104615885/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [edk2-devel] Tagging and releases of edk2-basetools
  2024-02-28  1:15 [edk2-devel] Tagging and releases of edk2-basetools Rebecca Cran
@ 2024-02-28  8:27 ` Laszlo Ersek
  2024-02-28 11:35   ` Gerd Hoffmann
  0 siblings, 1 reply; 4+ messages in thread
From: Laszlo Ersek @ 2024-02-28  8:27 UTC (permalink / raw)
  To: devel, rebecca, Liming Gao, Michael D Kinney, Michael Kubacki
  Cc: Gerd Hoffmann

On 2/28/24 02:15, Rebecca Cran wrote:
> edk2-basetools is finally fixed and releases can once again be published
> to PyPI.
> 
> However, in moving from setup.py to pyproject.toml the process has
> changed, and Joey suggested the old way might have been chosen
> deliberately to be different from edk2-pytool-library and
> edk2-pytool-extensions.
> 
> 
> Previously it fetched the list of releases from PyPI and incremented the
> version number before publishing a new version, while it now depends on
> the git repo being tagged.
> 
> 
> Should I work on migrating the old code and figuring out how to make it
> work with pyproject.toml?
> 
> 

Adding Gerd, because of
<https://github.com/tianocore/edk2-basetools/issues/85> -- "[Feature]:
please add release tags to the repository".

Laszlo



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#116095): https://edk2.groups.io/g/devel/message/116095
Mute This Topic: https://groups.io/mt/104615885/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [edk2-devel] Tagging and releases of edk2-basetools
  2024-02-28  8:27 ` Laszlo Ersek
@ 2024-02-28 11:35   ` Gerd Hoffmann
  2024-02-28 17:00     ` Rebecca Cran
  0 siblings, 1 reply; 4+ messages in thread
From: Gerd Hoffmann @ 2024-02-28 11:35 UTC (permalink / raw)
  To: Laszlo Ersek
  Cc: devel, rebecca, Liming Gao, Michael D Kinney, Michael Kubacki

On Wed, Feb 28, 2024 at 09:27:57AM +0100, Laszlo Ersek wrote:
> On 2/28/24 02:15, Rebecca Cran wrote:
> > edk2-basetools is finally fixed and releases can once again be published
> > to PyPI.
> > 
> > However, in moving from setup.py to pyproject.toml the process has
> > changed, and Joey suggested the old way might have been chosen
> > deliberately to be different from edk2-pytool-library and
> > edk2-pytool-extensions.
> > 
> > Previously it fetched the list of releases from PyPI and incremented the
> > version number before publishing a new version, while it now depends on
> > the git repo being tagged.
> > 
> > Should I work on migrating the old code and figuring out how to make it
> > work with pyproject.toml?

Not sure what exactly you want migrate.  I think releases being
triggered by tags in the repo makes alot of sense.

take care,
  Gerd



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#116113): https://edk2.groups.io/g/devel/message/116113
Mute This Topic: https://groups.io/mt/104615885/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [edk2-devel] Tagging and releases of edk2-basetools
  2024-02-28 11:35   ` Gerd Hoffmann
@ 2024-02-28 17:00     ` Rebecca Cran
  0 siblings, 0 replies; 4+ messages in thread
From: Rebecca Cran @ 2024-02-28 17:00 UTC (permalink / raw)
  To: Gerd Hoffmann, Laszlo Ersek, Sean
  Cc: devel, Liming Gao, Michael D Kinney, Michael Kubacki

Thanks.

Since Sean commented on 
https://github.com/tianocore/edk2-basetools/issues/85, adding him for 
more context around the original request.


-- 
Rebecca Cran


On 2/28/24 04:35, Gerd Hoffmann wrote:
> On Wed, Feb 28, 2024 at 09:27:57AM +0100, Laszlo Ersek wrote:
>> On 2/28/24 02:15, Rebecca Cran wrote:
>>> edk2-basetools is finally fixed and releases can once again be published
>>> to PyPI.
>>>
>>> However, in moving from setup.py to pyproject.toml the process has
>>> changed, and Joey suggested the old way might have been chosen
>>> deliberately to be different from edk2-pytool-library and
>>> edk2-pytool-extensions.
>>>
>>> Previously it fetched the list of releases from PyPI and incremented the
>>> version number before publishing a new version, while it now depends on
>>> the git repo being tagged.
>>>
>>> Should I work on migrating the old code and figuring out how to make it
>>> work with pyproject.toml?
> Not sure what exactly you want migrate.  I think releases being
> triggered by tags in the repo makes alot of sense.
>
> take care,
>    Gerd
>


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#116124): https://edk2.groups.io/g/devel/message/116124
Mute This Topic: https://groups.io/mt/104615885/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-02-28 17:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-28  1:15 [edk2-devel] Tagging and releases of edk2-basetools Rebecca Cran
2024-02-28  8:27 ` Laszlo Ersek
2024-02-28 11:35   ` Gerd Hoffmann
2024-02-28 17:00     ` Rebecca Cran

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox