Skip to content

Commit ece8ae2

Browse files
authored
Merge pull request #1544 from codeflash-ai/fix-security-vulnerabilities
fix: address security vulnerabilities while maintaining Python 3.9 support
2 parents 401d24c + 8199728 commit ece8ae2

6 files changed

Lines changed: 441 additions & 719 deletions

File tree

.github/workflows/unit-tests.yaml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,25 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
18+
include:
19+
- os: ubuntu-latest
20+
python-version: "3.9"
21+
- os: ubuntu-latest
22+
python-version: "3.10"
23+
- os: ubuntu-latest
24+
python-version: "3.11"
25+
- os: ubuntu-latest
26+
python-version: "3.12"
27+
- os: ubuntu-latest
28+
python-version: "3.13"
29+
- os: ubuntu-latest
30+
python-version: "3.14"
31+
- os: windows-latest
32+
python-version: "3.13"
1933
continue-on-error: true
20-
runs-on: ubuntu-latest
34+
runs-on: ${{ matrix.os }}
35+
env:
36+
PYTHONIOENCODING: utf-8
2137
steps:
2238
- uses: actions/checkout@v4
2339
with:

.github/workflows/windows-unit-tests.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)