1
0
mirror of https://github.com/LibreTranslate/LibreTranslate.git synced 2025-07-12 22:22:02 +02:00

Merge pull request #254 from dingedi/feature/add-python3-10

add python 3.10
This commit is contained in:
Piero Toffanin
2022-05-03 08:46:23 -04:00
committed by GitHub
3 changed files with 6 additions and 5 deletions

View File

@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: [3.7, 3.8, 3.9] python-version: ['3.7', '3.8', '3.9', '3.10']
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View File

@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: [3.7, 3.8, 3.9] python-version: ['3.7', '3.8', '3.9', '3.10']
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View File

@ -33,6 +33,7 @@ setup(
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9" "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
] ]
) )