From d0dd9b570b975017713c5c81958be529d895fcde 2024-12-10 13:30:23 From: M Bussonnier Date: 2024-12-10 13:30:23 Subject: [PATCH] misc fixes --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f41dca4..c273961 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,15 +37,15 @@ jobs: python-version: "3.13" deps: test # Installing optional dependencies stuff takes ages on PyPy - - os: ubuntu-latest - python-version: "pypy-3.11" - deps: test - - os: windows-latest - python-version: "pypy-3.11" - deps: test - - os: macos-latest - python-version: "pypy-3.11" - deps: test + # - os: ubuntu-latest + # python-version: "pypy-3.11" + # deps: test + # - os: windows-latest + # python-version: "pypy-3.11" + # deps: test + # - os: macos-latest + # python-version: "pypy-3.11" + # deps: test # Temporary CI run to use entry point compatible code in matplotlib-inline. - os: ubuntu-latest python-version: "3.12" @@ -85,7 +85,7 @@ jobs: if: runner.os != 'Windows' # setup.py does not support sdist on Windows run: check-manifest - - name: Install entry point compatible code (TEMPORARY) + - name: Install entry point compatible code (TEMPORARY, April 2024) if: matrix.want-latest-entry-point-code run: | python -m pip list diff --git a/IPython/core/completer.py b/IPython/core/completer.py index 41395f0..c944585 100644 --- a/IPython/core/completer.py +++ b/IPython/core/completer.py @@ -264,7 +264,6 @@ except ImportError: JEDI_INSTALLED = False - # ----------------------------------------------------------------------------- # Globals #-----------------------------------------------------------------------------