From 35de6e2f91298791622dcc73235e24879ea8209a Mon Sep 17 00:00:00 2001 From: David Hoese Date: Tue, 5 Sep 2023 16:32:21 -0500 Subject: [PATCH 1/3] Fix CI environment YAML not reflecting environment Python 3.11 --- continuous_integration/environment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/continuous_integration/environment.yaml b/continuous_integration/environment.yaml index f1e1856c..deaeff09 100644 --- a/continuous_integration/environment.yaml +++ b/continuous_integration/environment.yaml @@ -25,7 +25,7 @@ dependencies: - pyproj - pyshp - pyspectral - - python=3.10 + - python=3.11 - python-geotiepoints - pyyaml - rasterio From 8689a607c435bccedcc86ce806bf1b9bc17b9c7f Mon Sep 17 00:00:00 2001 From: David Hoese Date: Tue, 5 Sep 2023 16:43:22 -0500 Subject: [PATCH 2/3] Bump version to 3.1.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 442a7c02..db9e428e 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ from setuptools import find_packages, setup -version = "3.0.2" +version = "3.1.0" def readme(): From 4e4bfa67cd90d55015dac4f64876e8b9ae53d165 Mon Sep 17 00:00:00 2001 From: David Hoese Date: Tue, 5 Sep 2023 19:37:24 -0500 Subject: [PATCH 3/3] Make sure to clean documentation build directory in integration tests --- integration_tests/run.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration_tests/run.sh b/integration_tests/run.sh index fd71dc71..8dba3330 100755 --- a/integration_tests/run.sh +++ b/integration_tests/run.sh @@ -185,6 +185,8 @@ create_documentation() # Make docs. cd "$WORKSPACE"/doc + # Clean any past runs + make clean make latexpdf POLAR2GRID_DOC="$prefix" # Copy pdfs to package directory. cp "$WORKSPACE"/doc/build/latex/*.pdf "${WORKSPACE}/$package_name"