Skip to content
Draft
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: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ body:
options:
- 3.10
- 3.11
- 3.12
- 3.13
default: 1
validations:
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- name: Set up Python
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Natural Language :: English",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
Expand All @@ -32,14 +34,14 @@ keywords = [
"atomic force microscopy",
"image processing",
]
requires-python = ">=3.10, <3.12"
requires-python = ">=3.10, <3.14"
dependencies = [
"art",
"AFMReader",
"h5py",
"keras",
"matplotlib",
"numpy~=2.0.0", # Until TensorFlow supports newer versions
"numpy>2.0.0", # Until TensorFlow supports newer versions
"numpyencoder",
"pandas",
"pillow<=11.1.0",
Expand Down
Loading