diff options
author | Sam James <sam@gentoo.org> | 2023-05-24 08:06:57 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-24 08:06:57 +0100 |
commit | c3702bded26f1acfa69c12b5ff5c73bac11999e6 (patch) | |
tree | beae1f3d8d5e2de57cbfb8dd252648e3722c6bc5 | |
parent | Remove py3.9 → py3.10 lists (diff) | |
download | qa-scripts-c3702bded26f1acfa69c12b5ff5c73bac11999e6.tar.gz qa-scripts-c3702bded26f1acfa69c12b5ff5c73bac11999e6.tar.bz2 qa-scripts-c3702bded26f1acfa69c12b5ff5c73bac11999e6.zip |
Makefile.gpyutils: try to enable Python 3.12 lists
We're hoping that this is doable even this early on given ros is gone now..
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | Makefile.gpyutils | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Makefile.gpyutils b/Makefile.gpyutils index 52e1ce2..df7547d 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -6,7 +6,7 @@ timestamp = $(PORTDIR)/metadata/timestamp.commit outdir = /dev/null # upgrades for stable impls -upgr_base = $(outdir)/310-to-311.txt +upgr_base = $(outdir)/310-to-311.txt #$(outdir)/311-to-312.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff @@ -20,6 +20,16 @@ all = $(upgr_all) all: $(all) +$(outdir)/311-to-312.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl -m python3_11 python3_12 > $@.new + mv $@.new $@ + +#$(outdir)/311-to-312-stablereq.txt: $(timestamp) +# mkdir -p $(outdir) +# gpy-upgrade-impl -m -s python3_11 python3_12 > $@.new +# mv $@.new $@ + $(outdir)/310-to-311.txt: $(timestamp) mkdir -p $(outdir) gpy-upgrade-impl -m python3_10 python3_11 > $@.new |