diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d7e4a972..130c4c82 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: MODULE_NAME: neurodsp strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/setup.py b/setup.py index 37841b2f..69e3bf75 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -"""NeuroDSP setup script.""" +"""Setup script for neurodsp.""" import os from setuptools import setup, find_packages @@ -51,11 +51,12 @@ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', ], platforms = 'any', project_urls = { 'Documentation' : 'https://neurodsp-tools.github.io/', 'Bug Reports' : 'https://github.com/neurodsp-tools/neurodsp/issues', - 'Source' : 'https://github.com/neurodsp-tools/neurodsp' + 'Source' : 'https://github.com/neurodsp-tools/neurodsp', }, )