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
1 change: 0 additions & 1 deletion openpiv/docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
numpy>=1.9
openpiv
sphinx
recommonmark
Expand Down
118 changes: 69 additions & 49 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 9 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@ classifiers = [
"Development Status :: 4 - Beta",

# Sublist of all supported Python versions.
"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",
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Python 3.13 classifier added but not tested in CI. The GitHub Actions workflow in .github/workflows/testing.yml only tests Python 3.10, 3.11, and 3.12. To properly support Python 3.13, it should be added to the CI test matrix to verify compatibility with all dependencies, especially numpy 2.x and scipy 1.13.0.

Copilot uses AI. Check for mistakes.

# Sublist of all supported platforms and environments.
"Operating System :: MacOS :: MacOS X",
Expand All @@ -32,14 +30,14 @@ classifiers = [

[tool.poetry.dependencies]
python = ">=3.10"
numpy = ">=1.21.6"
imageio = "^2.22.4"
matplotlib = "^3"
scikit-image=">=0.23"
scipy = "^1.7.3"
natsort = "^8.4.0"
tqdm = "^4.66.1"
importlib_resources = "5.12.0"
numpy = ">=2.0.0"
imageio = ">=2.35.0"
matplotlib = ">=3.8.0"
scikit-image = ">=0.23.0"
scipy = ">=1.11.0"
natsort = ">=8.4.0"
tqdm = ">=4.66.0"
importlib_resources = ">=5.12.0"

[tool.poetry.dev-dependencies]
pytest = "^7.4.3"
Expand Down
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
'setuptools',
],
install_requires=[
'numpy>=1.21.6',
'imageio>=2.22.4',
'matplotlib>=3',
'scikit-image',
'scipy',
'natsort',
'tqdm',
'importlib_resources'
'numpy>=2.0.0',
'imageio>=2.35.0',
'matplotlib>=3.8.0',
'scikit-image>=0.23.0',
'scipy>=1.11.0',
'natsort>=8.4.0',
'tqdm>=4.66.0',
'importlib_resources>=5.12.0'
],
extras_require={"tests": ["pytest"]},
classifiers=[
Expand All @@ -37,10 +37,10 @@
'Development Status :: 4 - Beta',

# Sublist of all supported Python versions.
'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',
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Python 3.13 classifier added but not tested in CI. The GitHub Actions workflow in .github/workflows/testing.yml only tests Python 3.10, 3.11, and 3.12. To properly support Python 3.13, it should be added to the CI test matrix to verify compatibility with all dependencies, especially numpy 2.x and scipy 1.13.0.

Copilot uses AI. Check for mistakes.

# Sublist of all supported platforms and environments.
'Operating System :: MacOS :: MacOS X',
Expand Down
Loading