-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* removed py38 support, dependencies and github workflow * updated docs * Bump version: 0.16.1 → 0.16.2
- Loading branch information
1 parent
f15bb1e
commit 503afb0
Showing
11 changed files
with
16 additions
and
63 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.16.1 | ||
current_version = 0.16.2 | ||
commit = True | ||
tag = True | ||
|
||
|
This file was deleted.
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
__author__ = """Jelmer Veenstra""" | ||
__email__ = "[email protected]" | ||
__version__ = "0.16.1" | ||
__version__ = "0.16.2" | ||
|
||
from dfm_tools.deprecated import * | ||
from dfm_tools.download import * | ||
|
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 |
---|---|---|
|
@@ -4,23 +4,21 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "dfm_tools" | ||
version = "0.16.1" | ||
version = "0.16.2" | ||
maintainers = [{ name = "Jelmer Veenstra", email = "[email protected]" }] | ||
description = "dfm_tools are pre- and post-processing tools for Delft3D FM" | ||
readme = "README.md" | ||
keywords = ["dfm_tools", "D-FlowFM", "D-HYDRO", "post-processing", "pre-processing", "mapfiles", "hisfiles", "modelbuilder"] | ||
license = { text = "LGPLv3" } | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
#scipy<1.6.0 pip install fails in py39, is also 3 years old | ||
"scipy>=1.6.0", | ||
#numpy 1.21 is EOL since june 2023 | ||
"numpy>=1.22", | ||
#contour colorbar on uniform values fails with matplotlib<3.7.0, several other features with matplotlib<3.6.0 | ||
"matplotlib>=3.7.0", | ||
#pandas<2.0.0 in case of py38 to avoid conflict with xarray<2023.3.0: https://github.com/Deltares/xugrid/issues/78#issuecomment-1597723955 (xarray 2023.1.0 is the latest py38 release, and py38 is still supported by dfm_tools) | ||
#pandas>=1.4 is required by xarray>=2023.3.0 | ||
"pandas<2.0.0;python_version<='3.8'", | ||
"pandas>=1.4.0", | ||
#shapely<2.0.0 give "AttributeError: module 'shapely' has no attribute 'GeometryType'" | ||
"shapely>=2.0.0", | ||
|
@@ -30,13 +28,10 @@ dependencies = [ | |
"fiona>=1.9", | ||
#contextily<1.0.0 is from April 2020 | ||
"contextily>=1.0.0", | ||
#xarray<2023.4.0 conflicts with pandas<2.0.0 for resampling, only available for py39 | ||
#xarray<2022.6.0 did not find certain variable in dataset in test_data_map testcase | ||
"xarray>=2023.4.0;python_version>='3.9'", | ||
"xarray>=2022.6.0", | ||
#xarray<2023.4.0 conflicts with pandas<2.0.0 for resampling | ||
"xarray>=2023.4.0", | ||
#dask is aligned with xarray, no particular reason | ||
"dask>=2023.4.0;python_version>='3.9'", | ||
"dask>=2022.11.0", | ||
"dask>=2023.4.0", | ||
#netcdf4<1.5.4 pip install fails in py39 | ||
"netcdf4>=1.5.4", | ||
#bottleneck<1.3.3 pip install fails in py39 | ||
|
@@ -62,7 +57,6 @@ classifiers = [ | |
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
|
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,3 +1,3 @@ | ||
sonar.projectKey=Deltares_dfm_tools | ||
sonar.organization=Deltares | ||
sonar.python.version=3.8, 3.9, 3.10, 3.11 | ||
sonar.python.version=3.9, 3.10, 3.11 |