Skip to content

Commit b85ab2d

Browse files
authored
Merge pull request #322 from nanotaboada/feature/python3.12
feat: upgrade to Python 3.12
2 parents 5733cba + 6b87225 commit b85ab2d

File tree

7 files changed

+179
-211
lines changed

7 files changed

+179
-211
lines changed

.codacy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# https://docs.codacy.com/repositories-configure/codacy-configuration-file/
2+
13
exclude_paths:
24
- ".github"
35
- ".vscode"

.github/dependabot.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,19 @@ updates:
55
- package-ecosystem: "pip"
66
directory: "/"
77
schedule:
8-
interval: "weekly"
8+
interval: "daily"
99
groups:
1010
fastapi:
1111
patterns:
12-
- "fastapi"
13-
- "starlette"
14-
pydantic:
12+
- "fastapi*"
13+
flake8:
1514
patterns:
16-
- "pydantic*"
15+
- "flake8*"
16+
pytest:
17+
patterns:
18+
- "pytest*"
19+
- "gevent"
1720
- package-ecosystem: "github-actions"
1821
directory: "/"
1922
schedule:
20-
interval: "weekly"
23+
interval: "daily"

.github/workflows/python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
branches: [ master ]
1111

1212
env:
13-
PYTHON_VERSION: 3.9
13+
PYTHON_VERSION: 3.12
1414

1515
jobs:
1616
lint:

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
## Status
44

55
[![Python CI](https://github.com/nanotaboada/python-samples-fastapi-restful/actions/workflows/python-app.yml/badge.svg)](https://github.com/nanotaboada/python-samples-fastapi-restful/actions/workflows/python-app.yml)
6-
[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=nanotaboada_python-samples-fastapi-restful&metric=bugs)](https://sonarcloud.io/summary/new_code?id=nanotaboada_python-samples-fastapi-restful)
7-
[![CodeFactor](https://www.codefactor.io/repository/github/nanotaboada/python-samples-fastapi-restful/badge)](https://www.codefactor.io/repository/github/nanotaboada/python-samples-fastapi-restful)
8-
[![codebeat badge](https://codebeat.co/badges/4c4f7c08-3b35-4b57-a875-bf2043efe515)](https://codebeat.co/projects/github-com-nanotaboada-python-samples-fastapi-restful-master)
9-
[![Maintainability](https://qlty.sh/badges/af009694-c5cc-4568-897d-d20fa7ee017d/maintainability.svg)](https://qlty.sh/gh/nanotaboada/projects/python-samples-fastapi-restful)
6+
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanotaboada_python-samples-fastapi-restful&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=nanotaboada_python-samples-fastapi-restful)
107
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/8f9bab37f6f444c895a8b25d5df772fc)](https://app.codacy.com/gh/nanotaboada/python-samples-fastapi-restful/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
118
[![codecov](https://codecov.io/gh/nanotaboada/python-samples-fastapi-restful/branch/master/graph/badge.svg?token=A1WNZPRQEJ)](https://codecov.io/gh/nanotaboada/python-samples-fastapi-restful)
12-
[![Known Vulnerabilities](https://snyk.io/test/github/nanotaboada/python-samples-fastapi-restful/badge.svg)](https://snyk.io/test/github/nanotaboada/python-samples-fastapi-restful)
9+
[![CodeFactor](https://www.codefactor.io/repository/github/nanotaboada/python-samples-fastapi-restful/badge)](https://www.codefactor.io/repository/github/nanotaboada/python-samples-fastapi-restful)
10+
[![codebeat badge](https://codebeat.co/badges/4c4f7c08-3b35-4b57-a875-bf2043efe515)](https://codebeat.co/projects/github-com-nanotaboada-python-samples-fastapi-restful-master)
11+
12+
1313

1414
## Manifesto
1515

codecov.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
# Validate your repository YAML
2-
# https://docs.codecov.com/docs/codecov-yaml#validate-your-repository-yaml
3-
# curl -X POST --data-binary @codecov.yml https://codecov.io/validate
1+
# https://docs.codecov.com/docs/codecov-yaml
42

5-
# Ignoring Paths
6-
# https://docs.codecov.com/docs/ignoring-paths
7-
# The pattern folder/* will not match recursively in the folder.
8-
# Please use this folder/**/*, which will exclude all files within the given folder.
93
ignore:
104
- "data"
115
- "models"
@@ -14,11 +8,8 @@ ignore:
148
- "postman_collections"
159
- "main.py"
1610

17-
1811
coverage:
1912
status:
20-
# Splitting up projects
21-
# https://docs.codecov.com/docs/commit-status#splitting-up-projects-example
2213
project:
2314
routes:
2415
paths:

0 commit comments

Comments
 (0)