Skip to content

Commit d6b7d6a

Browse files
committed
DeprecationWarning: 'get_child_watcher' is deprecated as of Python 3.12 and will be removed in Python 3.14.
1 parent c0cde8f commit d6b7d6a

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

pyxt/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.4.1"

pyxt/server.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import logging
22

3-
from . import command as cmd
3+
from . import __version__, command as cmd
44
from .editor import Editor
55
from .history import get_history, should_update_history, update_history
66
from .results import error, handle_cancel, result
@@ -20,7 +20,7 @@
2020
from . import custom
2121

2222
log = logging.getLogger(__name__)
23-
pyxt_server = PyXTServer()
23+
pyxt_server = PyXTServer("pyxt", __version__)
2424

2525

2626
def pyxt_command(func):

requirements.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
isort
2-
pygls
2+
pygls>=1.3.1

requirements.txt

+14-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
#
2-
# This file is autogenerated by pip-compile
3-
# To update, run:
4-
#
5-
# pip-compile
6-
#
7-
isort==5.7.0
1+
# This file was autogenerated by uv via the following command:
2+
# uv pip compile requirements.in
3+
attrs==24.2.0
4+
# via
5+
# cattrs
6+
# lsprotocol
7+
cattrs==24.1.2
8+
# via
9+
# lsprotocol
10+
# pygls
11+
isort==5.13.2
812
# via -r requirements.in
9-
pygls==0.9.1
13+
lsprotocol==2023.0.1
14+
# via pygls
15+
pygls==1.3.1
1016
# via -r requirements.in

0 commit comments

Comments
 (0)