robotcode-jsonrpc2 0.83.3__tar.gz → 0.84.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {robotcode_jsonrpc2-0.83.3 → robotcode_jsonrpc2-0.84.0}/.gitignore +3 -0
- {robotcode_jsonrpc2-0.83.3 → robotcode_jsonrpc2-0.84.0}/PKG-INFO +2 -2
- {robotcode_jsonrpc2-0.83.3 → robotcode_jsonrpc2-0.84.0}/pyproject.toml +1 -1
- robotcode_jsonrpc2-0.84.0/src/robotcode/jsonrpc2/__version__.py +1 -0
- {robotcode_jsonrpc2-0.83.3 → robotcode_jsonrpc2-0.84.0}/src/robotcode/jsonrpc2/server.py +1 -1
- robotcode_jsonrpc2-0.83.3/src/robotcode/jsonrpc2/__version__.py +0 -1
- {robotcode_jsonrpc2-0.83.3 → robotcode_jsonrpc2-0.84.0}/LICENSE.txt +0 -0
- {robotcode_jsonrpc2-0.83.3 → robotcode_jsonrpc2-0.84.0}/README.md +0 -0
- {robotcode_jsonrpc2-0.83.3 → robotcode_jsonrpc2-0.84.0}/src/robotcode/jsonrpc2/__init__.py +0 -0
- {robotcode_jsonrpc2-0.83.3 → robotcode_jsonrpc2-0.84.0}/src/robotcode/jsonrpc2/protocol.py +0 -0
- {robotcode_jsonrpc2-0.83.3 → robotcode_jsonrpc2-0.84.0}/src/robotcode/jsonrpc2/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: robotcode-jsonrpc2
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.84.0
|
|
4
4
|
Summary: JSONRPC Server for RobotCode
|
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
|
@@ -25,7 +25,7 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
|
25
25
|
Classifier: Topic :: Utilities
|
|
26
26
|
Classifier: Typing :: Typed
|
|
27
27
|
Requires-Python: >=3.8
|
|
28
|
-
Requires-Dist: robotcode-core==0.
|
|
28
|
+
Requires-Dist: robotcode-core==0.84.0
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
30
30
|
|
|
31
31
|
# robotcode-jsonrpc2
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.84.0"
|
|
@@ -174,7 +174,7 @@ class JsonRPCServer(Generic[TProtocol], abc.ABC):
|
|
|
174
174
|
def start_stdio(self) -> None:
|
|
175
175
|
self.mode = ServerMode.STDIO
|
|
176
176
|
|
|
177
|
-
transport = StdOutTransportAdapter(sys.__stdin__.buffer, sys.__stdout__.buffer)
|
|
177
|
+
transport = StdOutTransportAdapter(sys.__stdin__.buffer, sys.__stdout__.buffer) # type: ignore
|
|
178
178
|
|
|
179
179
|
protocol = self.create_protocol()
|
|
180
180
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.83.3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|