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
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies = [
"fastdtw", # For DTW error calculation
"filterpy>=1.4.4",
]
requires-python = ">=3.7, <3.13"
requires-python = ">=3.9, <3.14"
authors = [
{name = "Christopher Teubert", email = "christopher.a.teubert@nasa.gov"},
{name = "Katelyn Griffith", email = "katelyn.j.griffith@nasa.gov"},
Expand Down Expand Up @@ -45,12 +45,11 @@ classifiers = [
'License :: Other/Proprietary License ',

'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'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',
'Programming Language :: Python :: 3 :: Only'
]

Expand Down
4 changes: 4 additions & 0 deletions sphinx-config/troubleshooting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ If you are using data-driven tools (e.g., LSTM model), make sure the datadriven
.. code-block:: console

$ pip install -e '.[datadriven]'

Installing ProgPy Data-Driven Tools with Python 3.13
------------------------
Tensorflow does not support Python3.13 as of the writing of this (April 2025). Until this is fixed, ProgPy data-driven features may not work correctly. If you are having trouble running data-driven features with Python3.13, try with an earlier version of Python.
Loading