Skip to content

Commit

Permalink
Merge branch 'develop' into 634-replace-production-and-dev-static-urls
Browse files Browse the repository at this point in the history
  • Loading branch information
navarroc committed Dec 2, 2024
2 parents f753911 + 3ca7072 commit 9508272
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ jobs:
tags="${tags},${version}"
version=${version%.*}
done
# Remove any unwanted double quotes from tags
tags=$(echo $tags | sed 's/"//g')
echo "VERSION=${version}" >> $GITHUB_ENV
echo "TAGS=${tags}" >> $GITHUB_ENV
elif [ "$BRANCH" == "develop" ]; then
Expand All @@ -61,6 +63,10 @@ jobs:
echo "TAGS=${BRANCH}" >> $GITHUB_ENV
fi
# debug TAGS
- name: Debug TAGS
run: echo "TAGS=${{ env.TAGS }}"

# build image
- name: Build image
uses: elgohr/[email protected]
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Fixed
- Documentation container tagging error by github action [#631](https://github.com/IN-CORE/pyincore/issues/631)
- Updated rasterio dependency to the latest to fetch correct GDAL version [#636](https://github.com/IN-CORE/pyincore/issues/636)


## [1.20.1] - 2024-11-01

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- pyproj>=3.6.1
- pytest>=3.9.0
- python-jose>=3.0
- rasterio>=1.3.9
- rasterio>=1.4.2
- requests>=2.31.0
- rtree>=1.1.0
- scipy>=1.11.3
Expand Down
2 changes: 1 addition & 1 deletion recipes/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ requirements:
- pandas>=2.1.2
- pyomo>=6.0.0,<=6.6.2
- pyproj>=3.6.1
- rasterio>=1.3.9
- rasterio>=1.4.2
- requests>=2.31.0
- rtree>=1.1.0
- scipy>=1.11.3
Expand Down
2 changes: 1 addition & 1 deletion requirements.min
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pyomo>=6.0.0,<=6.6.2
pyproj>=3.6.1
pytest>=3.9.0
python-jose>=3.0
rasterio>=1.3.9
rasterio>=1.4.2
requests>=2.31.0
rtree>=1.1.0
scipy>=1.11.3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"pandas>=2.1.2",
"pyomo>=6.0.0,<=6.6.2",
"pyproj>=3.6.1",
"rasterio>=1.3.9",
"rasterio>=1.4.2",
"rtree>=1.1.0",
"scipy>=1.11.3",
"shapely>=2.0.2",
Expand Down

0 comments on commit 9508272

Please sign in to comment.