Skip to content

Commit c9e33be

Browse files
committed
added support for cmd specific env vars and auth
1 parent 6193db8 commit c9e33be

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Upgrade pip
3838
if: matrix.os == 'macos-latest'
39-
run: python${{ matrix.python-version }} -m pip install --upgrade pip
39+
run: python -m pip install --upgrade pip
4040

4141
- name: Install dependencies from requirements.txt
4242
shell: bash

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Changelog
22

3-
## v3.6.6 (2024-11-08)
3+
## v3.7.0 (2024-11-08)
44

55
### Updates
66

77
- Added support for setting command specific environment variables (`env_vars` and `custom_auth`) in `execute` and `executeStmt`.
8+
- Upgraded to use `psycopg`
89

910
## v3.6.5 (2024-09-19)
1011

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='pystackql',
13-
version='v3.6.6',
13+
version='v3.7.0',
1414
description='A Python interface for StackQL',
1515
long_description=readme,
1616
author='Jeffrey Aven',
@@ -33,6 +33,7 @@
3333
'Operating System :: Microsoft :: Windows',
3434
'Operating System :: MacOS',
3535
'Operating System :: POSIX :: Linux',
36+
'Programming Language :: Python :: 3.8',
3637
'Programming Language :: Python :: 3.9',
3738
'Programming Language :: Python :: 3.10',
3839
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)