All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] python/python3: Move test files to test package
@ 2018-09-13 19:49 Andrew Geissler
  2018-09-13 23:30 ` Burton, Ross
  0 siblings, 1 reply; 14+ messages in thread
From: Andrew Geissler @ 2018-09-13 19:49 UTC (permalink / raw)
  To: openembedded-core; +Cc: Andrew Geissler, alejandro.enedino.hernandez-samaniego

A quick search in the python package shows the following test
directories being included in the python image:
./Python-2.7.14/Lib/bsddb/test
./Python-2.7.14/Lib/sqlite3/test
./Python-2.7.14/Lib/ctypes/test
./Python-2.7.14/Lib/unittest/test
./Python-2.7.14/Lib/lib-tk/test
./Python-2.7.14/Lib/email/test

Move the bsddb, ctypes, and email packages to the python-tests package
to conserve some space.

Packages not include in this patch:
- sqlite3 has it's own -tests package
- unittest is already a test package
- lib-tk (tkinter) seems to have its own special installation and does
not allow the manifest override for its test directory
- bsddb is no longer in python3 so update for it was not needed there

Just the ctypes and email change saved us ~150KB of read-only
filesystem space in our embedded env.

Changes since v1:
- Used manifest file instead of python recipe to move files to -tests
package

Signed-off-by: Andrew Geissler <geissonator@gmail.com>
---
 meta/recipes-devtools/python/python/python2-manifest.json  | 5 ++++-
 meta/recipes-devtools/python/python3/python3-manifest.json | 4 +++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/python/python/python2-manifest.json b/meta/recipes-devtools/python/python/python2-manifest.json
index 723e513..8db2afe 100644
--- a/meta/recipes-devtools/python/python/python2-manifest.json
+++ b/meta/recipes-devtools/python/python/python2-manifest.json
@@ -925,7 +925,10 @@
     },
     "tests": {
         "files": [
-            "${libdir}/python2.7/test"
+            "${libdir}/python2.7/test",
+            "${libdir}/python2.7/email/test",
+            "${libdir}/python2.7/ctypes/test",
+            "${libdir}/python2.7/bsddb/test"
         ],
         "rdepends": [
             "core"
diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json
index 90a41fb..963140f 100644
--- a/meta/recipes-devtools/python/python3/python3-manifest.json
+++ b/meta/recipes-devtools/python/python3/python3-manifest.json
@@ -1040,7 +1040,9 @@
     "tests": {
         "cached": [],
         "files": [
-            "${libdir}/python${PYTHON_MAJMIN}/test"
+            "${libdir}/python${PYTHON_MAJMIN}/test",
+            "${libdir}/python${PYTHON_MAJMIN}/email/test",
+            "${libdir}/python${PYTHON_MAJMIN}/ctypes/test"
         ],
         "rdepends": [
             "core",
-- 
2.7.4



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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-13 19:49 [PATCH v2] python/python3: Move test files to test package Andrew Geissler
@ 2018-09-13 23:30 ` Burton, Ross
  2018-09-13 23:49   ` Burton, Ross
  0 siblings, 1 reply; 14+ messages in thread
From: Burton, Ross @ 2018-09-13 23:30 UTC (permalink / raw)
  To: Andrew Geissler; +Cc: Alejandro Enedino Hernandez Samaniego, OE-core

A little oe-pkgdata-util[1] managed to give me a good review of some
missing entries here.

python3-asyncio: /usr/lib/python3.5/asyncio/test_utils.py
python3-2to3: /usr/lib/python3.5/lib2to3/tests/test_*.py
python3-tkinter: /usr/lib/python3.5/tkinter/test/
python3-unittest: /usr/lib/python3.5/unittest/test/ (the test suite
for unittest should be in python3-test)
python3-distutils: /usr/lib/python3.5/distutils/tests/test_*

I suspect simply adding python3.5/*/test/ will catch the bulk of this
now and in the future.

Ross

[1] oe-pkgdata-util find-path '/usr/lib/python*/**/test_*.py'

On 13 September 2018 at 20:49, Andrew Geissler <geissonator@gmail.com> wrote:
> A quick search in the python package shows the following test
> directories being included in the python image:
> ./Python-2.7.14/Lib/bsddb/test
> ./Python-2.7.14/Lib/sqlite3/test
> ./Python-2.7.14/Lib/ctypes/test
> ./Python-2.7.14/Lib/unittest/test
> ./Python-2.7.14/Lib/lib-tk/test
> ./Python-2.7.14/Lib/email/test
>
> Move the bsddb, ctypes, and email packages to the python-tests package
> to conserve some space.
>
> Packages not include in this patch:
> - sqlite3 has it's own -tests package
> - unittest is already a test package
> - lib-tk (tkinter) seems to have its own special installation and does
> not allow the manifest override for its test directory
> - bsddb is no longer in python3 so update for it was not needed there
>
> Just the ctypes and email change saved us ~150KB of read-only
> filesystem space in our embedded env.
>
> Changes since v1:
> - Used manifest file instead of python recipe to move files to -tests
> package
>
> Signed-off-by: Andrew Geissler <geissonator@gmail.com>
> ---
>  meta/recipes-devtools/python/python/python2-manifest.json  | 5 ++++-
>  meta/recipes-devtools/python/python3/python3-manifest.json | 4 +++-
>  2 files changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-devtools/python/python/python2-manifest.json b/meta/recipes-devtools/python/python/python2-manifest.json
> index 723e513..8db2afe 100644
> --- a/meta/recipes-devtools/python/python/python2-manifest.json
> +++ b/meta/recipes-devtools/python/python/python2-manifest.json
> @@ -925,7 +925,10 @@
>      },
>      "tests": {
>          "files": [
> -            "${libdir}/python2.7/test"
> +            "${libdir}/python2.7/test",
> +            "${libdir}/python2.7/email/test",
> +            "${libdir}/python2.7/ctypes/test",
> +            "${libdir}/python2.7/bsddb/test"
>          ],
>          "rdepends": [
>              "core"
> diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json
> index 90a41fb..963140f 100644
> --- a/meta/recipes-devtools/python/python3/python3-manifest.json
> +++ b/meta/recipes-devtools/python/python3/python3-manifest.json
> @@ -1040,7 +1040,9 @@
>      "tests": {
>          "cached": [],
>          "files": [
> -            "${libdir}/python${PYTHON_MAJMIN}/test"
> +            "${libdir}/python${PYTHON_MAJMIN}/test",
> +            "${libdir}/python${PYTHON_MAJMIN}/email/test",
> +            "${libdir}/python${PYTHON_MAJMIN}/ctypes/test"
>          ],
>          "rdepends": [
>              "core",
> --
> 2.7.4
>


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-13 23:30 ` Burton, Ross
@ 2018-09-13 23:49   ` Burton, Ross
  2018-09-14 13:06     ` Burton, Ross
  2018-09-14 16:35     ` Alejandro Hernandez
  0 siblings, 2 replies; 14+ messages in thread
From: Burton, Ross @ 2018-09-13 23:49 UTC (permalink / raw)
  To: Andrew Geissler; +Cc: Alejandro Enedino Hernandez Samaniego, OE-core

On 14 September 2018 at 00:30, Burton, Ross <ross.burton@intel.com> wrote:
> I suspect simply adding python3.5/*/test/ will catch the bulk of this
> now and in the future.

Gave this a go and annoyingly the manifest generation must sort the
list because the glob works for everything apart from packages after
tests alphabetically, so the tkinter and unittest tests don't get
moved.

I guess we could change the manifest to put the tests package at the
top of the list, and be sure to respect the order when generating the
lists.

Ross


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-13 23:49   ` Burton, Ross
@ 2018-09-14 13:06     ` Burton, Ross
  2018-09-14 15:13       ` Andrew Geissler
  2018-09-14 17:10       ` Alejandro Hernandez
  2018-09-14 16:35     ` Alejandro Hernandez
  1 sibling, 2 replies; 14+ messages in thread
From: Burton, Ross @ 2018-09-14 13:06 UTC (permalink / raw)
  To: Andrew Geissler; +Cc: Alejandro Enedino Hernandez Samaniego, OE-core

On 14 September 2018 at 00:49, Burton, Ross <ross.burton@intel.com> wrote:
> On 14 September 2018 at 00:30, Burton, Ross <ross.burton@intel.com> wrote:
>> I suspect simply adding python3.5/*/test/ will catch the bulk of this
>> now and in the future.
>
> Gave this a go and annoyingly the manifest generation must sort the
> list because the glob works for everything apart from packages after
> tests alphabetically, so the tkinter and unittest tests don't get
> moved.
>
> I guess we could change the manifest to put the tests package at the
> top of the list, and be sure to respect the order when generating the
> lists.

So I went and did this.

http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ross/manifest

Does anyone have a problem with this?  Basically all the test code is
merged into python3-test, including the previously separate
sqlite3-test.

Ross


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-14 13:06     ` Burton, Ross
@ 2018-09-14 15:13       ` Andrew Geissler
  2018-09-14 16:05         ` Burton, Ross
  2018-09-14 16:48         ` Alejandro Hernandez
  2018-09-14 17:10       ` Alejandro Hernandez
  1 sibling, 2 replies; 14+ messages in thread
From: Andrew Geissler @ 2018-09-14 15:13 UTC (permalink / raw)
  To: ross.burton; +Cc: alejandro.enedino.hernandez-samaniego, openembedded-core

On Fri, Sep 14, 2018 at 8:06 AM Burton, Ross <ross.burton@intel.com> wrote:
>
> On 14 September 2018 at 00:49, Burton, Ross <ross.burton@intel.com> wrote:
> > On 14 September 2018 at 00:30, Burton, Ross <ross.burton@intel.com> wrote:
> >> I suspect simply adding python3.5/*/test/ will catch the bulk of this
> >> now and in the future.
> >
> > Gave this a go and annoyingly the manifest generation must sort the
> > list because the glob works for everything apart from packages after
> > tests alphabetically, so the tkinter and unittest tests don't get
> > moved.
> >
> > I guess we could change the manifest to put the tests package at the
> > top of the list, and be sure to respect the order when generating the
> > lists.
>
> So I went and did this.
>
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ross/manifest
>
> Does anyone have a problem with this?  Basically all the test code is
> merged into python3-test, including the previously separate
> sqlite3-test.

Nice, thanks Ross!  Looks good to me. Will you be back-porting to
python2 as well?

>
> Ross


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-14 15:13       ` Andrew Geissler
@ 2018-09-14 16:05         ` Burton, Ross
  2018-09-14 16:56           ` Alejandro Hernandez
  2018-09-14 17:35           ` Andrew Geissler
  2018-09-14 16:48         ` Alejandro Hernandez
  1 sibling, 2 replies; 14+ messages in thread
From: Burton, Ross @ 2018-09-14 16:05 UTC (permalink / raw)
  To: Andrew Geissler; +Cc: Alejandro Enedino Hernandez Samaniego, OE-core

On 14 September 2018 at 16:13, Andrew Geissler <geissonator@gmail.com> wrote:
> Nice, thanks Ross!  Looks good to me. Will you be back-porting to
> python2 as well?

Struggling to be motivated for Py2 to be honest.  Do you fancy
duplicating the changes for Py2?  Alternatively I'll get around to
doing it next week.

Ross


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-13 23:49   ` Burton, Ross
  2018-09-14 13:06     ` Burton, Ross
@ 2018-09-14 16:35     ` Alejandro Hernandez
  2018-09-14 16:48       ` Alexander Kanavin
  1 sibling, 1 reply; 14+ messages in thread
From: Alejandro Hernandez @ 2018-09-14 16:35 UTC (permalink / raw)
  To: Burton, Ross, Andrew Geissler
  Cc: Alejandro Enedino Hernandez Samaniego, OE-core

Hey Ross,


I believe that if we want to go with this approach we would need to add 
these packages as "special_packages" on the manifest script, that way 
the script will simply avoid checking dependencies for them and will 
pass them without modifications, this will also cause these packages to 
appear earlier on the list, it does require some tweaking because 
directories such as lib/python/email shouldnt be on the email package 
itself, so we would need to take out such directories from the packages 
and rerun the script, that will repopulate the email package (ad others) 
correctly  with the files needed instead of the directory, but to be 
quite honest it might be easier to go with the first approach and delete 
such files on do_install()


Cheers,

Alejandro

On 9/13/2018 4:49 PM, Burton, Ross wrote:
> On 14 September 2018 at 00:30, Burton, Ross <ross.burton@intel.com> wrote:
>> I suspect simply adding python3.5/*/test/ will catch the bulk of this
>> now and in the future.
> Gave this a go and annoyingly the manifest generation must sort the
> list because the glob works for everything apart from packages after
> tests alphabetically, so the tkinter and unittest tests don't get
> moved.
>
> I guess we could change the manifest to put the tests package at the
> top of the list, and be sure to respect the order when generating the
> lists.
>
> Ross


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-14 15:13       ` Andrew Geissler
  2018-09-14 16:05         ` Burton, Ross
@ 2018-09-14 16:48         ` Alejandro Hernandez
  1 sibling, 0 replies; 14+ messages in thread
From: Alejandro Hernandez @ 2018-09-14 16:48 UTC (permalink / raw)
  To: Andrew Geissler, ross.burton
  Cc: alejandro.enedino.hernandez-samaniego, openembedded-core

Sorry about the last email, I just saw this after sending the other one, 
yes I believe this might work, it would give us more control on how we 
handle packaging, although in a way it assumes the user knows what its 
doing which is not always the case :)


Cheers,

Alejandro

On 9/14/2018 8:13 AM, Andrew Geissler wrote:
> On Fri, Sep 14, 2018 at 8:06 AM Burton, Ross <ross.burton@intel.com> wrote:
>> On 14 September 2018 at 00:49, Burton, Ross <ross.burton@intel.com> wrote:
>>> On 14 September 2018 at 00:30, Burton, Ross <ross.burton@intel.com> wrote:
>>>> I suspect simply adding python3.5/*/test/ will catch the bulk of this
>>>> now and in the future.
>>> Gave this a go and annoyingly the manifest generation must sort the
>>> list because the glob works for everything apart from packages after
>>> tests alphabetically, so the tkinter and unittest tests don't get
>>> moved.
>>>
>>> I guess we could change the manifest to put the tests package at the
>>> top of the list, and be sure to respect the order when generating the
>>> lists.
>> So I went and did this.
>>
>> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ross/manifest
>>
>> Does anyone have a problem with this?  Basically all the test code is
>> merged into python3-test, including the previously separate
>> sqlite3-test.
> Nice, thanks Ross!  Looks good to me. Will you be back-porting to
> python2 as well?
>
>> Ross


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-14 16:35     ` Alejandro Hernandez
@ 2018-09-14 16:48       ` Alexander Kanavin
  2018-09-14 17:36         ` Andrew Geissler
  0 siblings, 1 reply; 14+ messages in thread
From: Alexander Kanavin @ 2018-09-14 16:48 UTC (permalink / raw)
  To: Alejandro Hernandez; +Cc: Andrew Geissler, OE-core

We should probably do another dig at ridding oe-core of py2 :)

Alex

2018-09-14 18:35 GMT+02:00 Alejandro Hernandez
<alejandro.enedino.hernandez-samaniego@xilinx.com>:
> Hey Ross,
>
>
> I believe that if we want to go with this approach we would need to add
> these packages as "special_packages" on the manifest script, that way the
> script will simply avoid checking dependencies for them and will pass them
> without modifications, this will also cause these packages to appear earlier
> on the list, it does require some tweaking because directories such as
> lib/python/email shouldnt be on the email package itself, so we would need
> to take out such directories from the packages and rerun the script, that
> will repopulate the email package (ad others) correctly  with the files
> needed instead of the directory, but to be quite honest it might be easier
> to go with the first approach and delete such files on do_install()
>
>
> Cheers,
>
> Alejandro
>
>
> On 9/13/2018 4:49 PM, Burton, Ross wrote:
>>
>> On 14 September 2018 at 00:30, Burton, Ross <ross.burton@intel.com> wrote:
>>>
>>> I suspect simply adding python3.5/*/test/ will catch the bulk of this
>>> now and in the future.
>>
>> Gave this a go and annoyingly the manifest generation must sort the
>> list because the glob works for everything apart from packages after
>> tests alphabetically, so the tkinter and unittest tests don't get
>> moved.
>>
>> I guess we could change the manifest to put the tests package at the
>> top of the list, and be sure to respect the order when generating the
>> lists.
>>
>> Ross
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-14 16:05         ` Burton, Ross
@ 2018-09-14 16:56           ` Alejandro Hernandez
  2018-09-14 17:35           ` Andrew Geissler
  1 sibling, 0 replies; 14+ messages in thread
From: Alejandro Hernandez @ 2018-09-14 16:56 UTC (permalink / raw)
  To: Burton, Ross, Andrew Geissler
  Cc: Alejandro Enedino Hernandez Samaniego, OE-core

To be fair, I have also not had a chance to update the py2 manifest 
script with the latest changes I made to py3 either, but I think 
applying these to create_manifest2 should be trivial.


Alejandro

On 9/14/2018 9:05 AM, Burton, Ross wrote:

> On 14 September 2018 at 16:13, Andrew Geissler <geissonator@gmail.com> wrote:
>> Nice, thanks Ross!  Looks good to me. Will you be back-porting to
>> python2 as well?
> Struggling to be motivated for Py2 to be honest.  Do you fancy
> duplicating the changes for Py2?  Alternatively I'll get around to
> doing it next week.
>
> Ross


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-14 13:06     ` Burton, Ross
  2018-09-14 15:13       ` Andrew Geissler
@ 2018-09-14 17:10       ` Alejandro Hernandez
  1 sibling, 0 replies; 14+ messages in thread
From: Alejandro Hernandez @ 2018-09-14 17:10 UTC (permalink / raw)
  To: Burton, Ross, Andrew Geissler
  Cc: Alejandro Enedino Hernandez Samaniego, OE-core

Thanks Ross,

Acked-by: Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com>

On 9/14/2018 6:06 AM, Burton, Ross wrote:
> On 14 September 2018 at 00:49, Burton, Ross <ross.burton@intel.com> wrote:
>> On 14 September 2018 at 00:30, Burton, Ross <ross.burton@intel.com> wrote:
>>> I suspect simply adding python3.5/*/test/ will catch the bulk of this
>>> now and in the future.
>> Gave this a go and annoyingly the manifest generation must sort the
>> list because the glob works for everything apart from packages after
>> tests alphabetically, so the tkinter and unittest tests don't get
>> moved.
>>
>> I guess we could change the manifest to put the tests package at the
>> top of the list, and be sure to respect the order when generating the
>> lists.
> So I went and did this.
>
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ross/manifest
>
> Does anyone have a problem with this?  Basically all the test code is
> merged into python3-test, including the previously separate
> sqlite3-test.
>
> Ross


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-14 16:05         ` Burton, Ross
  2018-09-14 16:56           ` Alejandro Hernandez
@ 2018-09-14 17:35           ` Andrew Geissler
  1 sibling, 0 replies; 14+ messages in thread
From: Andrew Geissler @ 2018-09-14 17:35 UTC (permalink / raw)
  To: ross.burton; +Cc: alejandro.enedino.hernandez-samaniego, openembedded-core

On Fri, Sep 14, 2018 at 11:05 AM Burton, Ross <ross.burton@intel.com> wrote:
>
> On 14 September 2018 at 16:13, Andrew Geissler <geissonator@gmail.com> wrote:
> > Nice, thanks Ross!  Looks good to me. Will you be back-porting to
> > python2 as well?
>
> Struggling to be motivated for Py2 to be honest.  Do you fancy
> duplicating the changes for Py2?  Alternatively I'll get around to
> doing it next week.

Sure, I'll get some patches tested out and uploaded based on your Py3 changes.

>
> Ross


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-14 16:48       ` Alexander Kanavin
@ 2018-09-14 17:36         ` Andrew Geissler
  2018-09-14 17:42           ` Alexander Kanavin
  0 siblings, 1 reply; 14+ messages in thread
From: Andrew Geissler @ 2018-09-14 17:36 UTC (permalink / raw)
  To: alex.kanavin; +Cc: alejandro.enedino.hernandez-samaniego, openembedded-core

On Fri, Sep 14, 2018 at 11:48 AM Alexander Kanavin
<alex.kanavin@gmail.com> wrote:
>
> We should probably do another dig at ridding oe-core of py2 :)

Uh-oh!  Guess we better get the Py3 update on our list.

>
> Alex
>
> 2018-09-14 18:35 GMT+02:00 Alejandro Hernandez
> <alejandro.enedino.hernandez-samaniego@xilinx.com>:
> > Hey Ross,
> >
> >
> > I believe that if we want to go with this approach we would need to add
> > these packages as "special_packages" on the manifest script, that way the
> > script will simply avoid checking dependencies for them and will pass them
> > without modifications, this will also cause these packages to appear earlier
> > on the list, it does require some tweaking because directories such as
> > lib/python/email shouldnt be on the email package itself, so we would need
> > to take out such directories from the packages and rerun the script, that
> > will repopulate the email package (ad others) correctly  with the files
> > needed instead of the directory, but to be quite honest it might be easier
> > to go with the first approach and delete such files on do_install()
> >
> >
> > Cheers,
> >
> > Alejandro
> >
> >
> > On 9/13/2018 4:49 PM, Burton, Ross wrote:
> >>
> >> On 14 September 2018 at 00:30, Burton, Ross <ross.burton@intel.com> wrote:
> >>>
> >>> I suspect simply adding python3.5/*/test/ will catch the bulk of this
> >>> now and in the future.
> >>
> >> Gave this a go and annoyingly the manifest generation must sort the
> >> list because the glob works for everything apart from packages after
> >> tests alphabetically, so the tkinter and unittest tests don't get
> >> moved.
> >>
> >> I guess we could change the manifest to put the tests package at the
> >> top of the list, and be sure to respect the order when generating the
> >> lists.
> >>
> >> Ross
> >
> > --
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH v2] python/python3: Move test files to test package
  2018-09-14 17:36         ` Andrew Geissler
@ 2018-09-14 17:42           ` Alexander Kanavin
  0 siblings, 0 replies; 14+ messages in thread
From: Alexander Kanavin @ 2018-09-14 17:42 UTC (permalink / raw)
  To: Andrew Geissler; +Cc: Alejandro Hernandez, OE-core

2018-09-14 19:36 GMT+02:00 Andrew Geissler <geissonator@gmail.com>:
>> We should probably do another dig at ridding oe-core of py2 :)
>
> Uh-oh!  Guess we better get the Py3 update on our list.

I meant that oe-core will not depend on py2 for anything. The py2
recipe will be provided in oe-core for quite a while yet, but you
should keep in mind the official message from upstream:

"Being the last of the 2.x series, 2.7 will have an extended period of
maintenance. Specifically, 2.7 will receive bugfix support until
January 1, 2020. After the last release, 2.7 will receive no support."

Alex


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

end of thread, other threads:[~2018-09-14 17:42 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-13 19:49 [PATCH v2] python/python3: Move test files to test package Andrew Geissler
2018-09-13 23:30 ` Burton, Ross
2018-09-13 23:49   ` Burton, Ross
2018-09-14 13:06     ` Burton, Ross
2018-09-14 15:13       ` Andrew Geissler
2018-09-14 16:05         ` Burton, Ross
2018-09-14 16:56           ` Alejandro Hernandez
2018-09-14 17:35           ` Andrew Geissler
2018-09-14 16:48         ` Alejandro Hernandez
2018-09-14 17:10       ` Alejandro Hernandez
2018-09-14 16:35     ` Alejandro Hernandez
2018-09-14 16:48       ` Alexander Kanavin
2018-09-14 17:36         ` Andrew Geissler
2018-09-14 17:42           ` Alexander Kanavin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.