On Sat, Sep 14, 2024 at 09:32:53PM +0100, Julian Gilbey wrote: > severity 1077312 serious > thanks
I've just uploaded 2.3.0-1.1 to DELAYED/7-days to fix this RC bug. debdiff attached. Best wishes, Julian
diff -Nru python-omegaconf-2.3.0/debian/changelog python-omegaconf-2.3.0/debian/changelog --- python-omegaconf-2.3.0/debian/changelog 2024-05-02 06:53:22.000000000 +0100 +++ python-omegaconf-2.3.0/debian/changelog 2024-11-06 19:57:27.000000000 +0000 @@ -1,3 +1,11 @@ +python-omegaconf (2.3.0-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Remove build-dependency on python3-pydevd and related test (closes: + #1077312) + + -- Julian Gilbey <j...@debian.org> Wed, 06 Nov 2024 19:57:27 +0000 + python-omegaconf (2.3.0-1) unstable; urgency=medium * New upstream release. diff -Nru python-omegaconf-2.3.0/debian/control python-omegaconf-2.3.0/debian/control --- python-omegaconf-2.3.0/debian/control 2024-05-02 06:53:22.000000000 +0100 +++ python-omegaconf-2.3.0/debian/control 2024-11-06 19:57:27.000000000 +0000 @@ -13,7 +13,6 @@ Build-Depends-Indep: default-jre, python3-antlr4, - python3-pydevd, python3-pytest, python3-pytest-runner, python3-pytest-mock, diff -Nru python-omegaconf-2.3.0/debian/rules python-omegaconf-2.3.0/debian/rules --- python-omegaconf-2.3.0/debian/rules 2024-05-02 06:53:22.000000000 +0100 +++ python-omegaconf-2.3.0/debian/rules 2024-11-06 19:57:27.000000000 +0000 @@ -29,8 +29,8 @@ debian/tmp/usr/lib/python3/dist-packages/omegaconf/grammar/gen/OmegaConfGrammarLexer.py \ ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) - for i in `py3versions -rv` ; do \ - python$$i -m pytest tests -v --disable-warnings -p no:warnings ; \ + for i in `py3versions -sv` ; do \ + python$$i -m pytest tests --ignore tests/test_pydev_resolver_plugin.py -v --disable-warnings -p no:warnings ; \ done endif diff -Nru python-omegaconf-2.3.0/debian/tests/control python-omegaconf-2.3.0/debian/tests/control --- python-omegaconf-2.3.0/debian/tests/control 2024-05-02 06:53:22.000000000 +0100 +++ python-omegaconf-2.3.0/debian/tests/control 2024-11-06 19:57:27.000000000 +0000 @@ -1,4 +1,5 @@ Tests: unittests Depends: + python3-all, @builddeps@, Restrictions: allow-stderr needs-root diff -Nru python-omegaconf-2.3.0/debian/tests/unittests python-omegaconf-2.3.0/debian/tests/unittests --- python-omegaconf-2.3.0/debian/tests/unittests 2024-05-02 06:53:22.000000000 +0100 +++ python-omegaconf-2.3.0/debian/tests/unittests 2024-11-06 19:57:27.000000000 +0000 @@ -10,5 +10,5 @@ PYTHONPATH=${CWD}/debian/tmp/usr/lib/python3/dist-packages \ http_proxy=127.0.0.1:9 https_proxy=127.0.0.9:9 \ HTTP_PROXY=127.0.0.1:9 HTTPS_PROXY=127.0.0.1:9 \ - PYTHON=python${i} python${i} -m pytest tests -v --disable-warnings -p no:warnings + PYTHON=python${i} python${i} -m pytest tests --ignore tests/test_pydev_resolver_plugin.py -v --disable-warnings -p no:warnings done