Skip to content

Commit

Permalink
add python 3.12 on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xvik committed Mar 21, 2024
1 parent a2a7295 commit 4a92ddf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ environment:
JAVA_HOME: C:\Program Files\Java\jdk1.8.0
PYTHON: "C:\\Python38-x64"
PIP: 24.0
- job_name: Java 11, python 3.10
- job_name: Java 11, python 3.11
JAVA_HOME: C:\Program Files\Java\jdk11
PYTHON: "C:\\Python38-x64"
PIP: 24.0
- job_name: Java 17, python 3.11
- job_name: Java 17, python 3.12
JAVA_HOME: C:\Program Files\Java\jdk17
appveyor_build_worker_image: Visual Studio 2019
PYTHON: "C:\\Python311-x64"
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,23 @@ jobs:
strategy:
matrix:
java: [8, 11, 17]
python: ['3.8', '3.10', '3.11']
python: ['3.8', '3.11', '3.12']
pip: ['24.0']
virtualenv: ['20.25.1']

exclude:
- java: 8
python: '3.11'
- java: 8
python: '3.12'
- java: 11
python: '3.8'
- java: 11
python: '3.12'
- java: 17
python: '3.8'
- java: 17
python: '3.11'

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 4a92ddf

Please sign in to comment.