Skip to content

Commit b62ea78

Browse files
authored
Merge pull request #4 from ghazi-git/support-python-3.13
support-python-3.13
2 parents 018e4ab + 5096aae commit b62ea78

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
strategy:
1111
matrix:
1212
platform: [ ubuntu-latest, macos-latest, windows-latest ]
13-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
13+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [UNRELEASED]
8+
### Added
9+
- add support for python 3.13
810

911
## [0.8.0] - 2023-10-07
1012
### Added

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2425
]
2526
dynamic = ["version", "description"]
2627
requires-python = ">=3.8"

0 commit comments

Comments
 (0)