Skip to content
This repository was archived by the owner on Nov 10, 2024. It is now read-only.
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ jobs:
${{ runner.os }}-pip-
- name: Install dependencies
run: poetry install
- name: Enter poetry shell
run: poetry shell
- uses: actions/cache@v1
with:
path: .mypy_cache
Expand All @@ -43,9 +41,7 @@ jobs:
- name: Check docs build
# only run this for the python version used by netlify:
if: matrix.python-version == 3.8
run: |
make docs-build-ci
run: poetry run make docs-build-ci
- name: Check that formatting, linting, and tests pass
run: |
make ci
run: poetry run make ci

2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ First, you might want to see the basic ways to [help and get help](help-fastapi-

Once you've cloned the repository, here are some guidelines to set up your environment:

### Set up the development evironment
### Set up the development environment

After cloning the repository, you can use `poetry` to create a virtual environment:

Expand Down
2 changes: 1 addition & 1 deletion docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ First, you might want to see the basic ways to [help and get help](help-fastapi-

Once you've cloned the repository, here are some guidelines to set up your environment:

### Set up the development evironment
### Set up the development environment

After cloning the repository, you can use `poetry` to create a virtual environment:

Expand Down
2 changes: 1 addition & 1 deletion fastapi_restful/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.2.4.3"
__version__ = "0.2.5"

from .cbv_base import Api, Resource, set_responses, take_init_parameters

Expand Down
Loading