Skip to content

Commit dafb2fd

Browse files
authored
Merge pull request freqtrade#12505 from freqtrade/maint/python_3.14
CI against python 3.14
2 parents 896250f + 04fea4a commit dafb2fd

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
os: [ "ubuntu-22.04", "ubuntu-24.04", "macos-14", "macos-15" , "windows-2022", "windows-2025" ]
28-
python-version: ["3.11", "3.12", "3.13"]
28+
python-version: ["3.11", "3.12", "3.13", "3.14"]
2929

3030
steps:
3131
- uses: actions/[email protected]
@@ -110,7 +110,7 @@ jobs:
110110
fi
111111
112112
- name: Check for repository changes - Windows
113-
if: ${{ runner.os == 'Windows' && (matrix.python-version != '3.13') }}
113+
if: ${{ runner.os == 'Windows' }}
114114
run: |
115115
if (git status --porcelain) {
116116
Write-Host "Repository is dirty, changes detected:"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
2424
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
2526
"Operating System :: MacOS",
2627
"Operating System :: Unix",
2728
"Topic :: Office/Business :: Financial :: Investment",

requirements-freqai.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Required for freqai
66
scikit-learn==1.8.0
7-
joblib==1.5.2
7+
joblib==1.5.3
88
lightgbm==4.6.0
99
xgboost==3.1.2
1010
tensorboard==2.20.0

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jsonschema==4.25.1
2323
tabulate==0.9.0
2424
pycoingecko==3.2.0
2525
jinja2==3.1.6
26-
joblib==1.5.2
26+
joblib==1.5.3
2727
rich==14.2.0
2828
pyarrow==22.0.0; platform_machine != 'armv7l'
2929

0 commit comments

Comments
 (0)