Skip to content

Commit 5d8d38e

Browse files
committed
Merge branch 'release/3.3.10'
2 parents cc89616 + 9c6fd55 commit 5d8d38e

File tree

7 files changed

+27
-5
lines changed

7 files changed

+27
-5
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
open_collective: fastapi-template

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install deps
3434
run: |
3535
pip install -U pip
36-
pip install poetry==1.1.13
36+
pip install poetry==1.2.2
3737
poetry install
3838
env:
3939
POETRY_VIRTUALENVS_CREATE: false

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ WORKDIR /src
2222

2323
ENV PATH ${PATH}:/home/fastapi_template/.local/bin
2424

25-
RUN pip install poetry==1.1.13
25+
RUN pip install poetry==1.2.2
2626

2727
COPY . /src/
2828
RUN pip install .

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Pavel Kirilin
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

fastapi_template/template/{{cookiecutter.project_name}}/.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ stages:
1010
except:
1111
- tags
1212
before_script:
13-
- pip install poetry==1.1.13
13+
- pip install poetry==1.2.2
1414
- poetry config virtualenvs.create false
1515
- poetry install
1616

fastapi_template/template/{{cookiecutter.project_name}}/deploy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y \
1515
{%- endif %}
1616

1717

18-
RUN pip install poetry==1.1.13
18+
RUN pip install poetry==1.2.2
1919

2020
# Configuring poetry
2121
RUN poetry config virtualenvs.create false

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fastapi_template"
3-
version = "3.3.9"
3+
version = "3.3.10"
44
description = "Feature-rich robust FastAPI template"
55
authors = ["Pavel Kirilin <[email protected]>"]
66
packages = [{ include = "fastapi_template" }]

0 commit comments

Comments
 (0)