Skip to content

Commit

Permalink
Bump fastapi from 0.103.1 to 0.109.1 (#57)
Browse files Browse the repository at this point in the history
* Bump fastapi from 0.103.1 to 0.109.1

Bumps [fastapi](https://github.com/tiangolo/fastapi) from 0.103.1 to 0.109.1.
- [Release notes](https://github.com/tiangolo/fastapi/releases)
- [Commits](fastapi/fastapi@0.103.1...0.109.1)

---
updated-dependencies:
- dependency-name: fastapi
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* also bump other packages

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ruben Peters <[email protected]>
  • Loading branch information
dependabot[bot] and rubenpeters91 authored Feb 7, 2024
1 parent 4e1809a commit 732feb3
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Flake8
name: Linting

on:
pull_request:
Expand All @@ -15,11 +15,11 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Analysing the code with flake8
- name: Analysing the code with ruff
run: |
ruff check .
2 changes: 1 addition & 1 deletion .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.6] - 2024-02-07

### Changed
- Bumped Python, DVC, DVCLive and fastapi versions

## [1.0.5] - 2023-11-27

### Changed
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"

[project]
name = "noshow"
version = "1.0.5"
version = "1.0.6"
authors = [
{ name="Ruben Peters", email="[email protected]" }
]
description = "No-show prediction model to reduce the amount of no-shows at the clinics"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
Expand All @@ -22,9 +22,9 @@ dependencies =[
"imbalanced-learn~=0.11",
"scikit-learn~=1.3",
"pyarrow~=14.0",
"fastapi~=0.103",
"dvc~=2.58",
"dvclive~=2.11",
"fastapi~=0.109",
"dvc~=3.33",
"dvclive~=3.41",
"sqlalchemy~=2.0",
"python-dotenv~=1.0",
"pymssql~=2.2",
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ numpy==1.24.4
pandas==2.0.3
pyarrow==14.0.1
scikit-learn==1.3.1
dvc==2.58.2
fastapi==0.103.1
dvc==3.43.1
dvclive==3.41.1
fastapi==0.109.1
sqlalchemy==2.0.21
python-dotenv==1.0.0
pymssql==2.2.8
Expand Down

0 comments on commit 732feb3

Please sign in to comment.