Skip to content

Commit

Permalink
Merge pull request #342 from neurodsp-tools/py13
Browse files Browse the repository at this point in the history
[MNT] - Add tests for Python 3.13
  • Loading branch information
TomDonoghue authored Dec 3, 2024
2 parents f63aea1 + 9064a4c commit 4dae976
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""NeuroDSP setup script."""
"""Setup script for neurodsp."""

import os
from setuptools import setup, find_packages
Expand Down Expand Up @@ -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',
},
)

0 comments on commit 4dae976

Please sign in to comment.