Skip to content

Commit c9cd727

Browse files
Support Python 3.12 (#34)
* Support Python 3.12 * update release notes
1 parent 8794614 commit c9cd727

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/install_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python_version: ["3.9", "3.10", "3.11"]
14+
python_version: ["3.9", "3.10", "3.11", "3.12"]
1515
os: [ubuntu-latest, macos-latest]
1616
runs-on: ${{ matrix.os }}
1717
steps:

.github/workflows/lint_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python_version: ["3.11"]
15+
python_version: ["3.12"]
1616
steps:
1717
- name: Checkout repository
1818
uses: actions/checkout@v3

.github/workflows/unit_tests_with_latest_deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python_version: ["3.9", "3.10", "3.11"]
15+
python_version: ["3.9", "3.10", "3.11", "3.12"]
1616
featuretools_version: ["main", "release"]
1717
steps:
1818
- name: Checkout repository

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ classifiers = [
1313
"Programming Language :: Python :: 3.9",
1414
"Programming Language :: Python :: 3.10",
1515
"Programming Language :: Python :: 3.11",
16+
"Programming Language :: Python :: 3.12",
1617
"Operating System :: Microsoft :: Windows",
1718
"Operating System :: POSIX",
1819
"Operating System :: Unix",

release_notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release Notes
66
Future Release
77
==============
88
* Enhancements
9+
* Add support for Python 3.12 (:pr:`34`)
910
* Fixes
1011
* Changes
1112
* Documentation Changes

0 commit comments

Comments
 (0)