mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2026-02-18 01:00:11 -05:00
Merge pull request #891 from pierotofy/numfix
Fix installation on Python 3.13, 3.14
This commit is contained in:
commit
0f10a04f17
2
.github/workflows/run-tests.yml
vendored
2
.github/workflows/run-tests.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
|
||||
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
@ -55,7 +55,8 @@ dependencies = [
|
||||
"Werkzeug ==2.3.8",
|
||||
"requests ==2.31.0",
|
||||
"redis ==4.4.4",
|
||||
"numpy <2",
|
||||
"numpy <2;python_version<='3.12'",
|
||||
"numpy ==2.3.5;python_version>='3.13'",
|
||||
"prometheus-client ==0.15.0",
|
||||
"polib ==1.1.1",
|
||||
"packaging ==23.1",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user