Skip to content

Commit e873f04

Browse files
committed
Fix version specifiers
1 parent 173b48b commit e873f04

File tree

9 files changed

+14
-19
lines changed

9 files changed

+14
-19
lines changed

Diff for: .github/workflows/job.test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
matrix:
4545
os: [ubuntu]
4646
nodejs: ['>=20,<21']
47-
lab: ['>=4.1.0,<5.0.0a']
47+
lab: ['>=4.1.0,<5.0.0a0']
4848
r: ['>=4']
4949
steps:
5050
- uses: actions/checkout@v4
@@ -124,7 +124,7 @@ jobs:
124124
matrix:
125125
os: [ubuntu]
126126
nodejs: ['>=20,<21']
127-
lab: ['>=4.1.0,<5.0.0a']
127+
lab: ['>=4.1.0,<5.0.0a0']
128128
r: ['>=4']
129129
steps:
130130
- uses: actions/checkout@v4

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> TBD
1010
11-
Requires JupyterLab `>=4.1.0,<5.0.0a`
11+
Requires JupyterLab `>=4.1.0,<5.0.0a0`
1212

1313
### `@jupyter-lsp/jupyterlab-lsp 5.0.3`
1414

Diff for: CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Thank you for all your contributions :heart:
3232
A development environment requires, at a minimum:
3333

3434
- `python >=3.8,<3.13.0a0`
35-
- `jupyterlab >=4.1.0,<5.0.0a`
35+
- `jupyterlab >=4.1.0,<5.0.0a0`
3636
- `nodejs >=18,!=19,!=21,<23`
3737

3838
It is recommended to use a virtual environment (e.g. `virtualenv` or `conda env`)

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Use context menu on rows in the panel to filter out diagnostics or copy their me
9090

9191
You will need to have both of the following installed:
9292

93-
- JupyterLab >=4.1.0,<5.0.0a
93+
- JupyterLab >=4.1.0,<5.0.0a0
9494
- Python 3.8+
9595

9696
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.
@@ -113,9 +113,9 @@ Use of a python `virtualenv` or a conda env is also recommended.
113113
1. install JupyterLab and the extensions
114114

115115
```bash
116-
conda install -c conda-forge 'jupyterlab>=4.0.12,<4.1.0a0' jupyterlab-lsp
116+
conda install -c conda-forge 'jupyterlab>=4.1.0,<5.0.0a0' jupyterlab-lsp
117117
# or
118-
pip install 'jupyterlab>=4.0.12,<4.1.0a0' jupyterlab-lsp
118+
pip install 'jupyterlab>=4.1.0,<5.0.0a0' jupyterlab-lsp
119119
```
120120

121121
> Note: `jupyterlab-lsp` provides both the server extension and the lab extension.

Diff for: binder/environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ channels:
77
dependencies:
88
# runtime dependencies
99
- python >=3.8,<3.13.0a0
10-
- jupyterlab >=4.1.0,<5.0.0a
10+
- jupyterlab >=4.1.0,<5.0.0a0
1111
- jupyter_server >=1.1.2
1212
- notebook >=7
1313
# build dependencies

Diff for: docs/rtd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ channels:
77

88
dependencies:
99
- importlib_metadata
10-
- jupyterlab >=4.1.0,<5.0.0a
10+
- jupyterlab >=4.1.0,<5.0.0a0
1111
- myst-nb
1212
- nodejs >=18,!=19,!=21,<23
1313
- pandas

Diff for: python_packages/jupyterlab_lsp/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ python_requires = >=3.8
3737

3838
install_requires =
3939
jupyter_lsp >=2.0.0
40-
jupyterlab >=4.1.0,<5.0.0a
40+
jupyterlab >=4.1.0,<5.0.0a0

Diff for: requirements/lab.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# the version of jupyterlab
22
-r ./prod.txt
3-
jupyterlab >=4.1.0,<5.0.0a
3+
jupyterlab >=4.1.0,<5.0.0a0

Diff for: versions.py

+3-8
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,8 @@
1919
['@jupyterlab/application']
2020
.lstrip('~^')
2121
)
22-
JUPYTERLAB_MAJOR_VERSION = int(JUPYTERLAB_VERSION.split('.')[0])
23-
JUPYTERLAB_NEXT_MAJOR_VERSION = JUPYTERLAB_MAJOR_VERSION + 1
24-
JUPYTERLAB_MINOR_VERSION = int(JUPYTERLAB_VERSION.split('.')[1])
25-
JUPYTERLAB_NEXT_MINOR_VERSION = JUPYTERLAB_MINOR_VERSION + 1
26-
REQUIRED_JUPYTERLAB = (
27-
f'>={JUPYTERLAB_VERSION},'
28-
f'<{JUPYTERLAB_MAJOR_VERSION}.{JUPYTERLAB_NEXT_MINOR_VERSION}.0a0'
29-
)
22+
JUPYTERLAB_NEXT_MAJOR_VERSION = int(JUPYTERLAB_VERSION.split('.')[0]) + 1
23+
REQUIRED_JUPYTERLAB = f'>={JUPYTERLAB_VERSION},<{JUPYTERLAB_NEXT_MAJOR_VERSION}.0.0a0'
24+
REQUIRED_JUPYTER_SERVER = '>=1.1.2'
3025
REQUIRED_JUPYTER_SERVER = '>=1.1.2'
3126
REQUIRED_PYTHON = '>=3.8,<3.13.0a0'

0 commit comments

Comments
 (0)