Skip to content

Commit

Permalink
[MNT] manage python 3.8 end-of-life (#378)
Browse files Browse the repository at this point in the history
Python 3.8 has reached end-of-life, that is addressed in this PR:

* removal of python 3.8 from package support tags
* removal of python 3.8 from CI
* removal of python 3.8 support references from documentation

In some of the above places, python 3.13 was not present, in those cases
python 3.13 was also added.
  • Loading branch information
fkiraly authored Oct 18, 2024
1 parent 56dcbf7 commit c8190b4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 12 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", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4

Expand Down
12 changes: 6 additions & 6 deletions .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-12]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -65,11 +65,6 @@ jobs:
matrix:
include:
# Window 64 bit
- os: windows-2019
python: 38
python-version: '3.8'
bitness: 64
platform_id: win_amd64
- os: windows-2019
python: 39
python-version: '3.9'
Expand All @@ -90,6 +85,11 @@ jobs:
python-version: 3.12
bitness: 64
platform_id: win_amd64
- os: windows-2019
python: 313
python-version: 3.13
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 @@ -33,7 +33,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, 3.11 and 3.12
- **Python version**: Python 3.9, 3.10, 3.11, 3.12, and 3.13
- **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, 3.11 or 3.12
* environments with python version 3.9, 3.10, 3.11, 3.12, or 3.13
* 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, 3.11 or 3.12
* environments with python version 3.9, 3.10, 3.11, 3.12, or 3.13
* 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: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,13 @@ classifiers = [
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"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",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8,<3.14"
requires-python = ">=3.9,<3.14"
dependencies = []

[project.optional-dependencies]
Expand Down

0 comments on commit c8190b4

Please sign in to comment.