Skip to content

Commit 6403e0a

Browse files
committed
temp: gel-python version
1 parent 02e08de commit 6403e0a

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

edb/testbase/connection.py

+9
Original file line numberDiff line numberDiff line change
@@ -297,12 +297,18 @@ async def _ensure_transaction(self):
297297
)
298298
await self.start()
299299

300+
def _get_retry_options(self) -> options.RetryOptions:
301+
return options.RetryOptions.defaults()
302+
300303
def _get_state(self) -> options.State:
301304
return self._connection._get_state()
302305

303306
def _get_warning_handler(self) -> options.WarningHandler:
304307
return self._connection._get_warning_handler()
305308

309+
def _get_annotations(self) -> dict[str, str]:
310+
return self._connection._get_annotations()
311+
306312

307313
class Retry:
308314
def __init__(self, connection, raw=False):
@@ -364,6 +370,9 @@ def add_log_listener(self, callback):
364370
def remove_log_listener(self, callback):
365371
self._log_listeners.discard(callback)
366372

373+
def _get_retry_options(self) -> options.RetryOptions:
374+
return self._options.retry_options
375+
367376
def _get_state(self):
368377
return self._options.state
369378

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Gel Server"
44
requires-python = '>=3.12.0'
55
dynamic = ["version"]
66
dependencies = [
7-
'gel==3.0.0b7',
7+
'gel@git+https://github.com/geldata/gel-python.git@array-of-array',
88

99
'httptools>=0.6.0',
1010
'immutables>=0.18',
@@ -101,7 +101,7 @@ requires = [
101101
"wheel",
102102

103103
"parsing ~= 2.0",
104-
"gel==3.0.0b7",
104+
'gel@git+https://github.com/geldata/gel-python.git@array-of-array',
105105
]
106106
# Custom backend needed to set up build-time sys.path because
107107
# setup.py needs to import `edb.buildmeta`.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
EDGEDBCLI_REPO = 'https://github.com/edgedb/edgedb-cli'
4242
# This can be a branch, tag, or commit
43-
EDGEDBCLI_COMMIT = 'master'
43+
EDGEDBCLI_COMMIT = 'array-of-array'
4444

4545
EDGEDBGUI_REPO = 'https://github.com/edgedb/edgedb-studio.git'
4646
# This can be a branch, tag, or commit

0 commit comments

Comments
 (0)