Skip to content

Commit

Permalink
Merge pull request #538 from jashparekh/patch-2
Browse files Browse the repository at this point in the history
Add support for python 3.12
  • Loading branch information
plannigan authored Oct 7, 2023
2 parents d5f94d6 + 8dbe4b9 commit 72b6fd6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
push:
branches: ["main"]
env:
PYTHON_VERSION: "3.11"
PYTHON_VERSION: "3.12"

jobs:
bandit:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Check out code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Check out code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Publish Release

env:
PYTHON_VERSION: "3.11"
PYTHON_VERSION: "3.12"

on:
release:
Expand Down Expand Up @@ -62,4 +62,4 @@ jobs:
path: ./dist

- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@b7f401de30cb6434a1e19f805ff006643653240e # v1.8.10
uses: pypa/gh-action-pypi-publish@b7f401de30cb6434a1e19f805ff006643653240e # v1.8.10
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Python version `3.11` tested during CI
- Python version `3.11` added to package classifiers
- Python version `3.12` tested during CI
- Python version `3.12` added to package classifiers

### Removed

Expand Down
2 changes: 1 addition & 1 deletion docker/devbox.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-buster
FROM python:3.12-bookworm

ARG _USER="columbo"
ARG _UID="1001"
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: MIT License

[options]
Expand Down

0 comments on commit 72b6fd6

Please sign in to comment.