Skip to content

Commit

Permalink
Merge pull request #645 from hugovk/add-3.12
Browse files Browse the repository at this point in the history
Add support for Python 3.11-3.12
  • Loading branch information
jph00 authored Nov 30, 2024
2 parents 00de908 + 5daa973 commit a868b7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ on:
workflow_dispatch:
pull_request:
push:
branches:
- master
defaults:
run:
shell: bash
Expand All @@ -15,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu, macos]#,windows]
py: ["3.9", "3.10", "3.11"]
py: ["3.9", "3.10", "3.11", "3.12"]
include:
#- os: windows
# shell: "/usr/bin/bash"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
statuses = [ '1 - Planning', '2 - Pre-Alpha', '3 - Alpha',
'4 - Beta', '5 - Production/Stable', '6 - Mature', '7 - Inactive' ]
py_versions = '2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8 3.9 3.10'.split()
py_versions = '2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8 3.9 3.10 3.11 3.12'.split()
min_python = cfg['min_python']
lic = licenses[cfg['license']]

Expand Down

0 comments on commit a868b7e

Please sign in to comment.