Skip to content

Commit b41a0c6

Browse files
Merge pull request #13 from gregory-halverson-jpl/main
removing unnecessary `tensorflow` dependency
2 parents 054cf9c + ceab843 commit b41a0c6

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.10"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1717

1818
steps:
1919
- name: Checkout repository

FLiESLUT/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.2
1+
1.0.3

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
33

44
[project]
55
name = "FLiESLUT"
6-
version = "1.0.2"
6+
version = "1.0.3"
77
description = "Forest Light Environmental Simulator (FLiES) Radiative Transfer Model Look-Up Table (LUT) Implementation in Python"
88
readme = "README.md"
99
authors = [
@@ -15,7 +15,6 @@ classifiers = [
1515
]
1616
dependencies = [
1717
"GEOS5FP>=1.1.1",
18-
"keras==2.15",
1918
"koppengeiger",
2019
"MCD12C1-2019-v006",
2120
"NetCDF4",
@@ -24,8 +23,7 @@ dependencies = [
2423
"rasters",
2524
"sentinel-tiles",
2625
"solar-apparent-time",
27-
"sun-angles",
28-
"tensorflow==2.15.1"
26+
"sun-angles"
2927
]
3028

3129
requires-python = ">=3.10"

tests/test_import_dependencies.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# List of dependencies
44
dependencies = [
55
"GEOS5FP",
6-
"keras",
76
"koppengeiger",
87
"MCD12C1_2019_v006",
98
"netCDF4",
@@ -12,8 +11,7 @@
1211
"rasters",
1312
"sentinel_tiles",
1413
"solar_apparent_time",
15-
"sun_angles",
16-
"tensorflow"
14+
"sun_angles"
1715
]
1816

1917
# Generate individual test functions for each dependency

0 commit comments

Comments
 (0)