Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix swagger in docs #889

Merged
merged 6 commits into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry==1.3.2
run: pipx install poetry==1.5.1

- name: Set up Python 3.9 (only needed to avoid issue \#498)
if: ${{ matrix.python-version != '3.9' }}
Expand All @@ -56,7 +56,7 @@ jobs:
uses: pre-commit/action@v3.0.0

- name: Install dependencies
run: poetry install --with dev --no-interaction --all-extras
run: poetry install --with dev --without docs --no-interaction --all-extras

- name: Test with pytest
run: poetry run coverage run --concurrency=thread,greenlet,multiprocessing -m pytest
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,10 @@
**Note**: Numbers like (\#123) point to closed Pull Requests on the fractal-server repository.

# Unreleased

* Bump `mkdocs-render-swagger-plugin` to 0.1.0 (\#889).
* Fix `poetry install` command and `poetry` version in GitHub CI (\#889).

# 1.3.10

Warning: updating to this version requires changes to the configuration variable
Expand Down
12 changes: 6 additions & 6 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -65,7 +65,7 @@ mkdocs-material = "9.1.21"
mkdocs-gen-files = "0.4.0"
mkdocs-literate-nav = "0.5.0"
mkdocs-section-index = "0.3.5"
mkdocs-render-swagger-plugin = "0.0.4"
mkdocs-render-swagger-plugin = "0.1.0"
pyyaml="^6.0.1"


Expand Down