Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump FAST API upper bounds #1634

Merged
merged 48 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
a2636f3
create pydantic flowchart classes
ravi-kumar-pilla Oct 2, 2023
240a383
fixing pydantic class conversions
ravi-kumar-pilla Oct 5, 2023
772ed02
minor modifications and code comments
ravi-kumar-pilla Oct 7, 2023
900fb70
fix pytests for flowchart and managers
ravi-kumar-pilla Oct 10, 2023
57811a7
fix pytests
ravi-kumar-pilla Oct 10, 2023
182be16
fix lint errors and pytests
ravi-kumar-pilla Oct 11, 2023
62efd72
Merge branch 'main' of https://github.com/kedro-org/kedro-viz into ch…
ravi-kumar-pilla Oct 11, 2023
47cc4d7
Merge branch 'main' of https://github.com/kedro-org/kedro-viz into ch…
ravi-kumar-pilla Oct 11, 2023
d82f71d
fix lint issues and merge main
ravi-kumar-pilla Oct 11, 2023
fe67d26
fix initialization issues and lint issues
ravi-kumar-pilla Oct 11, 2023
47d3211
fix push issue
ravi-kumar-pilla Oct 11, 2023
1696c81
Merge branch 'main' into chore/refactor-data-classes
ravi-kumar-pilla Oct 12, 2023
c30e102
revert class method to static method
ravi-kumar-pilla Oct 16, 2023
2406458
merge main
ravi-kumar-pilla Oct 16, 2023
e620bcb
Merge branch 'chore/refactor-data-classes' of https://github.com/kedr…
ravi-kumar-pilla Oct 16, 2023
5ec1451
update method comments
ravi-kumar-pilla Oct 16, 2023
15855e2
Merge branch 'main' of https://github.com/kedro-org/kedro-viz into ch…
ravi-kumar-pilla Oct 16, 2023
5c97bbf
Merge branch 'main' into chore/refactor-data-classes
ravi-kumar-pilla Oct 16, 2023
198e946
Merge branch 'chore/refactor-data-classes' of https://github.com/kedr…
ravi-kumar-pilla Oct 17, 2023
3175df5
revert back method shuffles for better PR reviews
ravi-kumar-pilla Oct 17, 2023
38d0029
addressing PR comments
ravi-kumar-pilla Oct 17, 2023
c82e04c
merge main
ravi-kumar-pilla Oct 26, 2023
b106ad8
not-working version of pydantic shift
ravi-kumar-pilla Oct 26, 2023
1a95fd3
non-working p2
ravi-kumar-pilla Oct 31, 2023
844531d
not-working v3
ravi-kumar-pilla Nov 1, 2023
20bf139
modify metadata classes and update pytests
ravi-kumar-pilla Nov 3, 2023
a7564bd
merge main
ravi-kumar-pilla Nov 6, 2023
c526956
fix all pytests
ravi-kumar-pilla Nov 7, 2023
f61deb9
fix pytest for coverage
ravi-kumar-pilla Nov 7, 2023
ff39824
Merge branch 'main' into chore/refactor-data-classes
ravi-kumar-pilla Nov 7, 2023
d7e2653
Merge branch 'main' into chore/refactor-data-classes
ravi-kumar-pilla Nov 7, 2023
74b2930
address PR comments1
ravi-kumar-pilla Nov 7, 2023
b0e34ef
Merge branch 'chore/refactor-data-classes' of https://github.com/kedr…
ravi-kumar-pilla Nov 7, 2023
ca6b16f
fix lint issues
ravi-kumar-pilla Nov 7, 2023
2970e9e
add hash for pylint
ravi-kumar-pilla Nov 7, 2023
50c9d08
merge main
ravi-kumar-pilla Nov 7, 2023
80848d5
fix lint errors
ravi-kumar-pilla Nov 7, 2023
5cc645a
fix lint errors
ravi-kumar-pilla Nov 7, 2023
0769898
upgrade fastapi and test
ravi-kumar-pilla Nov 9, 2023
3715857
upgrade pydantic to accomodate fastapi
ravi-kumar-pilla Nov 9, 2023
358d0f0
pin lowerbound pydantic version
ravi-kumar-pilla Nov 13, 2023
ad3f138
merge main
ravi-kumar-pilla Nov 14, 2023
5e23bd4
lint fix
ravi-kumar-pilla Nov 14, 2023
311215e
add release note
ravi-kumar-pilla Nov 14, 2023
2e144f2
Merge branch 'main' of https://github.com/kedro-org/kedro-viz into ch…
ravi-kumar-pilla Nov 15, 2023
7538c2a
address PR comments
ravi-kumar-pilla Nov 15, 2023
726cf60
modify release note
ravi-kumar-pilla Nov 15, 2023
52831f0
Merge branch 'main' into chore/support-fastapi-upgrade
rashidakanchwala Nov 16, 2023
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
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Please follow the established format:
- Ensure Kedro-Viz works when hosted on a URL subpath. (#1621)
- Fix shareable URL modal to appear across the app. (#1639)
- Refactor flowchart dataclasses to pydantic base models. (#1565)
- Bump FAST API upper bounds. (#1634)

# Release 6.6.1

Expand Down
1 change: 1 addition & 0 deletions package/features/steps/lower_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ strawberry-graphql==0.192.0
networkx==2.5
orjson==3.9
secure==0.3.0
pydantic==1.10
4 changes: 3 additions & 1 deletion package/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
packaging~=23.0
kedro>=0.17.5
ipython>=7.0.0, <9.0
fastapi>=0.73.0, <0.96.0
fastapi>=0.73.0,<0.200.0; python_version >= '3.8'
fastapi>=0.73.0,<0.104.0; python_version < '3.8'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is Python < 3.8 still supported?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, plan was to drop 3.7 once framework had but looks like you already have? We will plan in the upcoming sprint.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To clarify, plugins have already dropped it, Kedro has dropped it in the develop branch and 0.19 will support >=3.8

pydantic<2
fsspec[s3]>=2021.4, <2024.1
aiofiles>=22.1.0
uvicorn[standard]~=0.22.0
Expand Down
2 changes: 1 addition & 1 deletion package/test_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ behave~=1.2
black~=23.3
boto3~=1.26
flake8~=5.0
fastapi[all]>=0.73.0, <0.96.0
isort~=5.11
matplotlib~=3.5
mypy~=1.0
Expand All @@ -26,6 +25,7 @@ sqlalchemy-stubs~=0.4
strawberry-graphql[cli]>=0.99.0, <1.0
trufflehog~=2.2
typing_extensions~=4.7.0; python_version < '3.9'
httpx~=0.24.0

# mypy
types-aiofiles==0.1.3
Expand Down