Skip to content

Commit

Permalink
Add support for python 3.10 to 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagasaki45 committed Jun 16, 2024
1 parent ff58ca0 commit 8d534d5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ name: CI Pipeline
on: [push]

env:
MAIN_PYTHON: "3.9"
MAIN_PYTHON: "3.12"

jobs:
test:
name: Test 🧪
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout repository
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## Added

- Support for python 3.10 to 3.12.

## Removed

- Support for Python 3.6 and 3.7.
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
"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",
],
# This field adds keywords for your project which will appear on the
# project page. What does your project relate to?
Expand Down

0 comments on commit 8d534d5

Please sign in to comment.