Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ We are providing support on `Gitter <https://gitter.im/openbraininstitute/Curren
Main dependencies
=================

- `Python 3.9+ <https://www.python.org/downloads/release/python-390/>`_
- `Python 3.10+ <https://www.python.org/downloads/release/python-3100/>`_
- `Numpy <https://numpy.org/>`_ (automatically installed by pip)
- `Palettable <https://github.com/jiffyclub/palettable>`_ (automatically installed by pip)

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
description="Module to easily plot currentscape."
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">= 3.8"
requires-python = ">= 3.10"
dynamic = ["version"]
dependencies = [
"numpy",
Expand All @@ -23,10 +23,10 @@ classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ ignore_basepython_conflict = true

[gh-actions]
python =
3.9: py3
3.10: py3
3.11: py3
3.12: py3, check-packaging, lint, docs, coverage
3.13: py3

[testenv]
basepython=python
Expand Down