Skip to content

Commit b628a8a

Browse files
committed
del python 3.9 support
1 parent 9f893dc commit b628a8a

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
contents: read
1414
if: github.actor != 'mindsdbadmin'
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- name: Set up Python
18-
uses: actions/setup-python@v5.6.0
18+
uses: actions/setup-python@v6.1.0
1919
with:
2020
python-version: ${{ vars.CI_PYTHON_VERSION }}
2121
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
python-version: ["3.9","3.10","3.11","3.12","3.13"]
16+
python-version: ["3.10","3.11","3.12","3.13"]
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v5.6.0
20+
uses: actions/setup-python@v6.1.0
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install dependencies
@@ -37,11 +37,11 @@ jobs:
3737
permissions:
3838
pull-requests: write
3939
steps:
40-
- uses: actions/checkout@v4
41-
- name: Set up Python 3.9
42-
uses: actions/setup-python@v5.6.0
40+
- uses: actions/checkout@v6
41+
- name: Set up Python 3.10
42+
uses: actions/setup-python@v6.1.0
4343
with:
44-
python-version: 3.9
44+
python-version: 3.10
4545

4646
- name: Install dependencies
4747
run: |

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def run(self):
3232
"Programming Language :: Python :: 3",
3333
"Operating System :: OS Independent",
3434
],
35-
python_requires=">=3.9",
35+
python_requires=">=3.10",
3636
cmdclass={
3737
'build': Build
3838
},

0 commit comments

Comments
 (0)