Skip to content

Commit

Permalink
[MNT] python 3.12 (#221)
Browse files Browse the repository at this point in the history
This PR adds python 3.12 in the `pyproject.toml`, project documentation, and CI.

For release with 0.6.0.
  • Loading branch information
fkiraly authored Oct 4, 2023
1 parent d721a8f commit c2c7888
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4

Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, macOS-11]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -85,6 +85,11 @@ jobs:
python-version: 3.11
bitness: 64
platform_id: win_amd64
- os: windows-2019
python: 312
python-version: 3.12
bitness: 64
platform_id: win_amd64

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ For trouble shooting or more information, see our
[detailed installation instructions](https://skbase.readthedocs.io/en/latest/user_documentation/installation.html).

- **Operating system**: macOS X · Linux · Windows 8.1 or higher
- **Python version**: Python 3.8, 3.9, 3.10 and 3.11
- **Python version**: Python 3.8, 3.9, 3.10, 3.11 and 3.12
- **Package managers**: [pip]

[pip]: https://pip.pypa.io/en/stable/
Expand Down
2 changes: 1 addition & 1 deletion docs/source/get_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Installation

``skbase`` currently supports:

* environments with python version 3.8, 3.9, 3.10 or 3.11
* environments with python version 3.8, 3.9, 3.10, 3.11 or 3.12
* operating systems Mac OS X, Unix-like OS, Windows 8.1 and higher
* installation via ``PyPi``

Expand Down
2 changes: 1 addition & 1 deletion docs/source/user_documentation/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Installation

``skbase`` currently supports:

* environments with python version 3.8, 3.9, 3.10 or 3.11
* environments with python version 3.8, 3.9, 3.10, 3.11 or 3.12
* operating systems Mac OS X, Unix-like OS, Windows 8.1 and higher

Checkout the full list of pre-compiled wheels on
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8,<3.12"
requires-python = ">=3.8,<3.13"
dependencies = []

[project.optional-dependencies]
Expand Down

0 comments on commit c2c7888

Please sign in to comment.