Skip to content

Commit

Permalink
Fix docs deployment (#741)
Browse files Browse the repository at this point in the history
* Update github actions

* Bump to python 3.9

* Updated dependencies

* Updated changelog
  • Loading branch information
ddobie authored Aug 9, 2024
1 parent cdc797f commit e0288e1
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 79 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-docs-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: 3.8
- uses: Gr1N/setup-poetry@v8
python-version: 3.9
- uses: Gr1N/setup-poetry@v9
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential libpq-dev libgraphviz-dev
- name: Cache Python dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-docs-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: 3.8
- uses: Gr1N/setup-poetry@v8
python-version: 3.9
- uses: Gr1N/setup-poetry@v9
- name: Set release notes tag
run: |
export RELEASE_TAG_VERSION=${{ github.event.release.tag_name }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

#### Fixed

- Fixed mkdocs serving issues [#728](https://github.com/askap-vast/vast-pipeline/pull/728)
- Fixed python 3.9 testing failing on github actions [#728](https://github.com/askap-vast/vast-pipeline/pull/728)
- Updated github action syntax to correctly call docker compose [#736](https://github.com/askap-vast/vast-pipeline/pull/736)
- Fix memory leak in new_sources merge [#730](https://github.com/askap-vast/vast-pipeline/pull/730)
Expand Down Expand Up @@ -124,6 +125,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

#### List of PRs

- [#728](https://github.com/askap-vast/vast-pipeline/pull/728): fix: Adjust package versions and fix mkdocs serve issues
- [#728](https://github.com/askap-vast/vast-pipeline/pull/728): fix: Adjust package versions and fix python 3.9 tests breaking on github actions
- [#736](https://github.com/askap-vast/vast-pipeline/pull/736): fix: Updated github action syntax to correctly call docker compose
- [#730](https://github.com/askap-vast/vast-pipeline/pull/730): fix: Fix memory leak in new_sources merge
Expand Down
127 changes: 58 additions & 69 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ channels = "^3.0.4"
param = "<2.0.0"

[tool.poetry.dev-dependencies]
mkdocs-material = "^8.2.4"
mkdocstrings = {extras = ["python"], version = "^0.18.0"}
mkdocs-material = "^9.4"
mkdocstrings = {extras = ["python"], version = "^0.25.0"}
mkdocs-minify-plugin = "^0"
mkdocs-material-extensions = "^1.0.1"
mkdocs-gen-files = "^0"
Expand All @@ -64,6 +64,7 @@ django-stubs = "^1.9.0"
lightgallery = "^0"
mkdocs-git-revision-date-localized-plugin = "^0"
mike = "^1.1.2"
markdown = "3.3.7"

[tool.poetry.extras]
prod = ["gevent", "gunicorn"]
Expand Down

0 comments on commit e0288e1

Please sign in to comment.