Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions .github/workflows/job.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,16 +208,16 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu', 'macos', 'windows']
python: ['3.8', '3.11']
python: ['3.9', '3.12']
include:
- python: '3.8'
# Node 16 end-of-life: 2023-09-11
nodejs: '>=16,<17.0.0.a0'
- python: '3.9'
# Node 18 end-of-life: 2025-04-30
nodejs: '>=18,<19.0.0.a0'
r: '>=4'
lab: '>=4.1.0,<5'
- python: '3.11'
# Node 18 end-of-life: 2025-04-30
nodejs: '>=18,<19.0.0.a0'
# Node 20 end-of-life: 2026-04-30
nodejs: '>=20,<21.0.0.a0'
r: '>=4'
lab: '>=4.1.0,<5'

Expand All @@ -239,9 +239,9 @@ jobs:
with:
python-version: ${{ matrix.python }}
environment-file: requirements/github-actions.yml
mamba-version: '*'
channels: conda-forge,nodefaults
channel-priority: true
miniforge-version: latest

- name: List all packages
run: conda list
Expand Down Expand Up @@ -337,18 +337,18 @@ jobs:
max-parallel: 3
matrix:
os: ['ubuntu', 'macos', 'windows']
python: ['3.8', '3.11', 'pypy-3.8']
python: ['3.9', '3.12', 'pypy-3.9']
include:
- python: '3.8'
- python: '3.9'
dist: 'jupyter*lsp*.whl'
lab: '>=4.1.0,<5'
- python: '3.8'
- python: '3.9'
dist: 'jupyter*lsp*.tar.gz'
lab: '>=4.1.0,<5'
- python: '3.11'
dist: 'jupyter*lsp*.whl'
lab: '>=4.1.0,<5'
- python: 'pypy-3.8'
- python: 'pypy-3.9'
dist: 'jupyter*lsp*.tar.gz'
lab: '>=4.1.0,<5'
- os: 'windows'
Expand Down Expand Up @@ -392,12 +392,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu]
python: ['3.8', '3.11']
python: ['3.9', '3.12']
nodejs: ['20.x']
include:
- python: '3.8'
- python: '3.9'
lab: '>=4.1.0,<5'
- python: '3.11'
- python: '3.12'
lab: '>=4.1.0,<5'
steps:
- name: Install Python
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ Thank you for all your contributions :heart:

A development environment requires, at a minimum:

- `python >=3.8,<3.13.0a0`
- `python >=3.9,<3.13.0a0`
- `jupyterlab >=4.1.0,<5.0.0a0`
- `nodejs >=18,!=19,!=21,<23`
- `nodejs >=20,!=21,!=23,<25`

It is recommended to use a virtual environment (e.g. `virtualenv` or `conda env`)
for development.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Use context menu on rows in the panel to filter out diagnostics or copy their me
You will need to have both of the following installed:

- JupyterLab >=4.1.0,<5.0.0a0
- Python 3.8+
- Python 3.9+

In addition, if you wish to use javascript, html, markdown or any other NodeJS-based language server you will need to have appropriate NodeJS version installed.

Expand Down
4 changes: 2 additions & 2 deletions binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ channels:

dependencies:
# runtime dependencies
- python >=3.8,<3.13.0a0
- python >=3.9,<3.13.0a0
- jupyterlab >=4.1.0,<5.0.0a0
- jupyter_server >=1.1.2
- notebook >=7
# build dependencies
- nodejs >=18,!=19,!=21,<23
- nodejs >=20,!=21,!=23,<25
# for python language server (and development)
- flake8 >=3.5
- pip
Expand Down
2 changes: 1 addition & 1 deletion versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
JUPYTERLAB_NEXT_MAJOR_VERSION = int(JUPYTERLAB_VERSION.split('.')[0]) + 1
REQUIRED_JUPYTERLAB = f'>={JUPYTERLAB_VERSION},<{JUPYTERLAB_NEXT_MAJOR_VERSION}.0.0a0'
REQUIRED_JUPYTER_SERVER = '>=1.1.2'
REQUIRED_PYTHON = '>=3.8,<3.13.0a0'
REQUIRED_PYTHON = '>=3.9,<3.13.0a0'
Loading