Skip to content

Commit

Permalink
revert mkdocs.yml and tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
uncle-lv committed Nov 25, 2024
1 parent ef24f47 commit 59a2cfd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,20 @@ jobs:
fail-fast: false
matrix:
include:
- {name: Linux, python: '3.12', os: ubuntu-latest, tox: py312}
- {name: Windows, python: '3.12', os: windows-latest, tox: py312}
- {name: Mac, python: '3.12', os: macos-latest, tox: py312}
- {name: '3.11', python: '3.11', os: ubuntu-latest, tox: py311}
- {name: '3.10', python: '3.10', os: ubuntu-latest, tox: py310}
- {name: Linux, python: '3.10', os: ubuntu-latest, tox: py310}
- {name: Windows, python: '3.10', os: windows-latest, tox: py310}
- {name: Mac, python: '3.10', os: macos-latest, tox: py310}
- {name: '3.9', python: '3.9', os: ubuntu-latest, tox: py39}
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
- {name: 'PyPy', python: 'pypy-3.10', os: ubuntu-latest, tox: pypy310}
- {name: 'Minimum Versions', python: '3.8', os: ubuntu-latest, tox: 'min-versions'}
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
- {name: 'PyPy', python: 'pypy-3.7', os: ubuntu-latest, tox: pypy37}
- {name: Flask1, python: '3.8', os: ubuntu-latest, tox: flask1}
- {name: Style, python: '3.10', os: ubuntu-latest, tox: style}
- {name: Docs, python: '3.10', os: ubuntu-latest, tox: docs}
- {name: Typing, python: '3.10', os: ubuntu-latest, tox: typing}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: 'pip'
Expand All @@ -47,7 +46,7 @@ jobs:
pip install -U setuptools
python -m pip install -U pip
- name: cache mypy
uses: actions/cache@v3.3.2
uses: actions/cache@v3.2.2
with:
path: ./.mypy_cache
key: mypy|${{ matrix.python }}|${{ hashFiles('setup.cfg') }}
Expand Down
17 changes: 7 additions & 10 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ nav:
- Configuration: configuration.md
- Error Handling: error-handling.md
- Examples: examples.md
- Tips: tips.md
- API Reference:
- APIFlask: api/app.md
- APIBlueprint: api/blueprint.md
Expand All @@ -76,22 +75,20 @@ nav:
- Comparison and Motivations: comparison.md
- Authors: authors.md
- Changelog: changelog.md
- Migration Guide: migration_guide.md
- Contributing Guide: contributing.md
- Donate to APIFlask: https://opencollective.com/apiflask
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
rendering:
heading_level: 2
watch:
- src/apiflask
- README.md
- examples/README.md
- CHANGES.md
- CONTRIBUTING.md
watch:
- src/apiflask
- README.md
- examples/README.md
- CHANGES.md
- CONTRIBUTING.md
extra_css:
- _assets/extra.css

0 comments on commit 59a2cfd

Please sign in to comment.