commit: 6d28f00f48078ccb2b49547258cc3076c8c3c9b0 Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz> AuthorDate: Wed May 31 08:36:01 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed May 31 20:13:10 2023 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=6d28f00f
Makefile.gpyutils: enable py3.12 graphs They generate within reasonable time frame, ~17 mins in my case. Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz> Closes: https://github.com/gentoo/qa-scripts/pull/3 Signed-off-by: Sam James <sam <AT> gentoo.org> Makefile.gpyutils | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.gpyutils b/Makefile.gpyutils index cb228c7..51e56c2 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -15,11 +15,11 @@ upgr_base = $(outdir)/310-to-311.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff -upgr_txt = $(upgr_base) $(upgr_streq) +upgr_txt = $(upgr_base) $(upgr_streq) $(outdir)/311-to-312.txt upgr_dot = $(patsubst %.txt,%.dot,$(upgr_txt)) upgr_svg = $(patsubst %.dot,%.svg,$(upgr_dot)) # add new impls here if not stable yet, to avoid insanely huge generation times -upgr_all = $(upgr_txt) $(upgr_dot) $(upgr_svg) $(outdir)/311-to-312.txt $(outdir)/311-to-312.dot +upgr_all = $(upgr_txt) $(upgr_dot) $(upgr_svg) all = $(upgr_all)
