Julian Gilbey
Julian Gilbey
Hi Han-Wen, Just updating the Debian package, and stumbled across two little bugs in the new version: * GNUMakefile.in uses "echo -e" to generate the version.texi file. Unfortunately, that doesn't...
I have just tried building jsx-lexer and running the test suite. Unfortunately, one of the tests fails: ``` =================================== FAILURES =================================== _______________________ JsxLexerTestCase.test_get_tokens _______________________ self = def test_get_tokens(self): lexer =...
Hello! I'm trying to upgrade the Debian version of this package to 3.0.0, but some of the tests are now failing. I don't know why this might be, as they...
Hi Fabio, In my attempts to package pydevd for Debian, I have packaged bytecode separately. (Debian is quite against having vendored copies of software in other packages wherever it can...
Hi! Some of the tests fail when using Python 3.12 (probably in addition to those that fail with Python 3.11 - see #240, #257): here is a list of them:...
The file `setup.py` imports from `distutils.extension`, which no longer exists in Python 3.12: https://github.com/fabioz/PyDev.Debugger/blob/2cf10e3fb2ace33b6ef36d66332c82b62815e856/setup.py#L26 It should be sufficient to replace this with `from setuptools import Extension`.
Hi! I have lots (16 to be precise) of test failures when running the test suite with pydevd 2.9.2 (patched with PR #239) on Debian. These at least partially match...
This test failed on my Debian amd64 build. Attached is the test log: [pydevd_2.9.2_testfailure.txt](https://github.com/fabioz/PyDev.Debugger/files/9945751/pydevd_2.9.2_testfailure.txt)
I've received a series of deprecation warnings from setuptools when building this package on Debian (setuptools version 65.5.0): the first is ``` /usr/lib/python3/dist-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning: Installing 'pydevd_attach_to_process.linux_and_mac' as data is deprecated,...
When testing pydevd (as at git commit 8ee4065) with flask 2.2.2, the following two tests failed: ``` tests_python/test_debugger.py::test_case_flask tests_python/test_debugger_json.py::test_case_flask_line_validation ``` The cause was the same in both cases - there...