Skip to content

Commit 61f3733

Browse files
committed
ci updates
1 parent 85af5bd commit 61f3733

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
# - windows-latest
1414
- macos-latest
1515
python-version:
16-
- "3.7"
17-
- "3.8"
16+
# - "3.7"
17+
# - "3.8"
1818
- "3.9"
1919
- "3.10"
2020
- "3.11"

pystackql/stackql.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,8 @@ def __init__(self,
264264

265265
if self.server_mode:
266266
# server mode, connect to a server via the postgres wire protocol
267+
if this_os == 'Windows':
268+
server_address = '127.0.0.1'
267269
self.server_address = server_address
268270
self.server_port = server_port
269271
# establish the connection

pystackql/stackql_magic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def __init__(self, shell):
2222
"""
2323
from . import StackQL
2424
super(StackqlMagic, self).__init__(shell)
25-
self.stackql_instance = StackQL(server_mode=True, output='pandas', server_address="127.0.0.1", server_port=5466)
25+
self.stackql_instance = StackQL(server_mode=True, output='pandas')
2626

2727
def get_rendered_query(self, data):
2828
"""

0 commit comments

Comments
 (0)