File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -297,12 +297,18 @@ async def _ensure_transaction(self):
297
297
)
298
298
await self .start ()
299
299
300
+ def _get_retry_options (self ) -> options .RetryOptions :
301
+ return options .RetryOptions .defaults ()
302
+
300
303
def _get_state (self ) -> options .State :
301
304
return self ._connection ._get_state ()
302
305
303
306
def _get_warning_handler (self ) -> options .WarningHandler :
304
307
return self ._connection ._get_warning_handler ()
305
308
309
+ def _get_annotations (self ) -> dict [str , str ]:
310
+ return self ._connection ._get_annotations ()
311
+
306
312
307
313
class Retry :
308
314
def __init__ (self , connection , raw = False ):
@@ -364,6 +370,9 @@ def add_log_listener(self, callback):
364
370
def remove_log_listener (self , callback ):
365
371
self ._log_listeners .discard (callback )
366
372
373
+ def _get_retry_options (self ) -> options .RetryOptions :
374
+ return self ._options .retry_options
375
+
367
376
def _get_state (self ):
368
377
return self ._options .state
369
378
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description = "Gel Server"
4
4
requires-python = ' >=3.12.0'
5
5
dynamic = [" version" ]
6
6
dependencies = [
7
- ' gel==3.0.0b7 ' ,
7
+ ' gel@git+https://github.com/geldata/gel-python.git@array-of-array ' ,
8
8
9
9
' httptools>=0.6.0' ,
10
10
' immutables>=0.18' ,
@@ -101,7 +101,7 @@ requires = [
101
101
" wheel" ,
102
102
103
103
" parsing ~= 2.0" ,
104
- " gel==3.0.0b7 " ,
104
+ ' gel@git+https://github.com/geldata/gel-python.git@array-of-array ' ,
105
105
]
106
106
# Custom backend needed to set up build-time sys.path because
107
107
# setup.py needs to import `edb.buildmeta`.
Original file line number Diff line number Diff line change 40
40
41
41
EDGEDBCLI_REPO = 'https://github.com/edgedb/edgedb-cli'
42
42
# This can be a branch, tag, or commit
43
- EDGEDBCLI_COMMIT = 'master '
43
+ EDGEDBCLI_COMMIT = 'array-of-array '
44
44
45
45
EDGEDBGUI_REPO = 'https://github.com/edgedb/edgedb-studio.git'
46
46
# This can be a branch, tag, or commit
You can’t perform that action at this time.
0 commit comments