Skip to content

Commit

Permalink
[DOP-3161] Run tests on Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed Feb 2, 2024
1 parent 5ac644f commit ee5a413
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch:

env:
DEFAULT_PYTHON: '3.11'
DEFAULT_PYTHON: '3.12'

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- '[0-9]+.[0-9]+.[0-9]+'

env:
DEFAULT_PYTHON: '3.11'
DEFAULT_PYTHON: '3.12'

jobs:
release:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Tests
on:
push:
branches:
- master
- main
pull_request:
workflow_dispatch:

Expand All @@ -12,7 +12,7 @@ concurrency:
cancel-in-progress: true

env:
DEFAULT_PYTHON: '3.11'
DEFAULT_PYTHON: '3.12'

jobs:
tests:
Expand All @@ -23,7 +23,7 @@ jobs:
matrix:
include:
- os: ubuntu-latest
python-version: '3.11'
python-version: '3.12'
mlflow-version: 1.23.0
- os: ubuntu-latest
python-version: '3.7'
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: '3.11'
python: '3.12'
jobs:
post_checkout:
- git fetch --unshallow || true
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,12 @@
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
],
Expand Down

0 comments on commit ee5a413

Please sign in to comment.