Skip to content

Commit

Permalink
BLD: Update python_version to >=3.9 in pyproject.toml
Browse files Browse the repository at this point in the history
Don't specify Python version in CMakeLists.txt

Co-authored-by: Katelyn FitzGerald <[email protected]>
  • Loading branch information
DWesl and kafitzgerald authored Oct 23, 2024
1 parent e502213 commit 97643e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if(PROJECT_SOURCE_DIR STREQUAL PROJECT_BINARY_DIR)
)
endif()

find_package(Python 3.8 REQUIRED COMPONENTS Development.Module NumPy)
find_package(Python COMPONENTS Interpreter Development.Module NumPy REQUIRED)

# Ensure scikit-build modules
if (NOT SKBUILD)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ maintainers = [
]
description = "Diagnostic and interpolation routines for WRF-ARW data."
readme = "README.md"
requires-python = ">=3.7, <3.13"
requires-python = ">=3.9, <3.13"
keywords = [
"python", "wrf-python", "wrf", "forecast", "model",
"weather research and forecasting", "interpolation",
Expand Down

0 comments on commit 97643e7

Please sign in to comment.