Skip to content

Commit

Permalink
Add support for Python 3.13 and remove Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
JureZmrzlikar committed Jan 29, 2025
1 parent 4bb7548 commit abea2c1
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ jobs:
strategy:
fail-fast: false
matrix:
tox-env: [py38, py39, py310, py311, py312, docs, linters, package]
tox-env: [py39, py310, py311, py312, py313, docs, linters, package]
include:
- tox-env: py38
python-version: 3.8
- tox-env: py39
python-version: 3.9
- tox-env: py310
Expand All @@ -26,6 +24,8 @@ jobs:
python-version: "3.11"
- tox-env: py312
python-version: "3.12"
- tox-env: py313
python-version: "3.13"
- tox-env: docs
python-version: "3.10"
- tox-env: linters
Expand Down
14 changes: 14 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ Change Log
All notable changes to this project are documented in this file.


==================
2.2.0 - 2025-01-29
==================

Added
-----
- Add support for Python 3.13

Changed
-------
- Remove support for Python 3.8
- Update deprecated ``sklearn`` validation methods


==================
2.1.0 - 2023-11-03
==================
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ authors = [
dynamic = ["version"]
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.8, <3.13"
requires-python = ">=3.9, <3.14"
keywords = [
"bio",
"bioinformatics",
Expand All @@ -36,11 +36,11 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
dependencies = [
"click",
Expand Down Expand Up @@ -79,7 +79,7 @@ rnanorm = "rnanorm.cli:main"
[tool.setuptools_scm]

[tool.black]
target-version = ["py38", "py39", "py310", "py311", "py312"]
target-version = ["py39", "py310", "py311", "py312", "py313"]
line-length = 99

[tool.isort]
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311,312},docs,linters,package
envlist = py{39,310,311,312,313},docs,linters,package
skip_missing_interpreters = True
minversion = 3.5.0
isolated_build = true
Expand All @@ -8,11 +8,11 @@ isolated_build = true
extras =
docs: docs
package: package
py{38,39,310,311,312},linters: test
py{39,310,311,312,313},linters: test
ignore_errors = true
commands =
# Run tests.
py{38,39,310,311,312}: pytest --verbose --cov=rnanorm
py{39,310,311,312,313}: pytest --verbose --cov=rnanorm

# Build documentation.
docs: sphinx-build docs build/sphinx -a -E -W
Expand Down

0 comments on commit abea2c1

Please sign in to comment.