Skip to content

Commit 32405cb

Browse files
committed
added rowsaffected to executeStmt
1 parent 55d2eff commit 32405cb

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

.github/workflows/test.yaml

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,12 @@ jobs:
1919
- "3.10"
2020
- "3.11"
2121
- "3.12"
22+
# - "3.13"
2223
exclude:
23-
- os: windows-latest
24-
python-version: "3.12"
24+
# - os: windows-latest
25+
# python-version: "3.13"
26+
- os: macos-latest
27+
python-version: "3.7"
2528
runs-on: ${{matrix.os}}
2629
name: 'Run Tests on ${{matrix.os}} with Python ${{matrix.python-version}}'
2730

@@ -49,20 +52,21 @@ jobs:
4952
- name: Install psycopg2-binary for Windows using local wheel
5053
if: matrix.os == 'windows-latest'
5154
run: |
52-
# Determine the wheel filename based on the Python version
53-
$wheelFilename = switch ("${{ matrix.python-version }}") {
54-
"3.7" { "psycopg2-2.9.3-cp37-cp37m-win_amd64.whl" }
55-
"3.8" { "psycopg2-2.9.3-cp38-cp38-win_amd64.whl" }
56-
"3.9" { "psycopg2-2.9.3-cp39-cp39-win_amd64.whl" }
57-
"3.10" { "psycopg2-2.9.3-cp310-cp310-win_amd64.whl" }
58-
"3.11" { "psycopg2-2.9.3-cp311-cp311-win_amd64.whl" }
59-
}
55+
# # Determine the wheel filename based on the Python version
56+
# $wheelFilename = switch ("${{ matrix.python-version }}") {
57+
# "3.7" { "psycopg2-2.9.3-cp37-cp37m-win_amd64.whl" }
58+
# "3.8" { "psycopg2-2.9.3-cp38-cp38-win_amd64.whl" }
59+
# "3.9" { "psycopg2-2.9.3-cp39-cp39-win_amd64.whl" }
60+
# "3.10" { "psycopg2-2.9.3-cp310-cp310-win_amd64.whl" }
61+
# "3.11" { "psycopg2-2.9.3-cp311-cp311-win_amd64.whl" }
62+
# }
6063
61-
# Print the wheel filename for debugging
62-
Write-Host "Determined wheel filename: $wheelFilename"
64+
# # Print the wheel filename for debugging
65+
# Write-Host "Determined wheel filename: $wheelFilename"
6366
64-
# Install the wheel
65-
pip install ./tests/whls/$wheelFilename
67+
# # Install the wheel
68+
# pip install ./tests/whls/$wheelFilename
69+
pip install "psycopg[binary]"
6670
shell: powershell
6771
# End Windows specific
6872

0 commit comments

Comments
 (0)