generated from aicoe-aiops/project-template
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add OilGasAsset Signed-off-by: Joe Moorhouse <[email protected]> * Update to geopandas needed (fiona clash); requires 3.9 minimum. Signed-off-by: Joe Moorhouse <[email protected]> * Use 3.9 in tox Signed-off-by: Joe Moorhouse <[email protected]> * Relax test slightly (small differences from numerical libraries). Signed-off-by: Joe Moorhouse <[email protected]> --------- Signed-off-by: Joe Moorhouse <[email protected]>
- Loading branch information
1 parent
b037118
commit a8fb879
Showing
7 changed files
with
61 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
branches: [ main ] | ||
|
||
env: | ||
python-version: "3.8" | ||
python-version: "3.9" | ||
|
||
jobs: | ||
ci: | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ description = "OS-Climate Physical Risk Library" | |
authors = [ | ||
{name = "Joe Moorhouse",email = "[email protected]"}, | ||
] | ||
requires-python = ">=3.8,<3.11" | ||
requires-python = ">=3.9,<3.11" | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
keywords = ["Physical", "Climate", "Risk", "Finance"] | ||
|
@@ -46,7 +46,7 @@ dependencies = [ | |
"shapely>=2.0.1", | ||
"s3fs>=2022.1.0", | ||
"zarr>=2.10.3", | ||
"geopandas>=0.13.2", | ||
"geopandas>=0.14.4", | ||
"h3>=3.7.7", | ||
"lmdbm>=0.0.6", | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist = py38, static | ||
envlist = py39, static | ||
|
||
[testenv] | ||
deps = | ||
|