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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion FLiESLUT/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.2
1.0.3
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]

[project]
name = "FLiESLUT"
version = "1.0.2"
version = "1.0.3"
description = "Forest Light Environmental Simulator (FLiES) Radiative Transfer Model Look-Up Table (LUT) Implementation in Python"
readme = "README.md"
authors = [
Expand All @@ -15,7 +15,6 @@ classifiers = [
]
dependencies = [
"GEOS5FP>=1.1.1",
"keras==2.15",
"koppengeiger",
"MCD12C1-2019-v006",
"NetCDF4",
Expand All @@ -24,8 +23,7 @@ dependencies = [
"rasters",
"sentinel-tiles",
"solar-apparent-time",
"sun-angles",
"tensorflow==2.15.1"
"sun-angles"
]

requires-python = ">=3.10"
Expand Down
4 changes: 1 addition & 3 deletions tests/test_import_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
# List of dependencies
dependencies = [
"GEOS5FP",
"keras",
"koppengeiger",
"MCD12C1_2019_v006",
"netCDF4",
Expand All @@ -12,8 +11,7 @@
"rasters",
"sentinel_tiles",
"solar_apparent_time",
"sun_angles",
"tensorflow"
"sun_angles"
]

# Generate individual test functions for each dependency
Expand Down