-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Python version upgraded from 3.8 to 3.11 * Python version changes done in build_docker_images.yml file * Testng 3.8 version test results * Testing 3.8 tests results * python 3.11 testing * Final Commit for python upgrade * requirements.txt updated for testing * bullseye to bookworm python update * service bus version update * rolledback requirement.txt file * resource procesor change * Bookworm to Bullseye Changes * 3.12 version upgrade for python * airlockfiles changes * mlflow changes * remove stuff * add in 'the' * update * update requirements * updaet * update * update * update pytest versions * update starlette * update * update mlflow * update * update vmss_porter * update * update core version * python updates * update StrEnum * fix api messages * add in user, edit output.sh, revert schema_extra * updates * update oydantic version * update * update * update * linting * update * update changelog * remove pydantic chnages * update * update * update cli dependencies * update version * update * remove setuptools test * remove --------- Co-authored-by: Neosoft <gaurav.mishra@cloudkubed.com> Co-authored-by: gauravmishrack <gaurav.mishra@cloudkued.com> Co-authored-by: Tim Allen <tallenp@me.com>
- Loading branch information
1 parent
fbc4b55
commit 6c7a450
Showing
30 changed files
with
95 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.7.3" | ||
__version__ = "0.8.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Dev requirements | ||
pytest==7.2.0 | ||
mock==5.0.0 | ||
pytest==8.3.3 | ||
mock==5.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Do not include azure-functions-worker as it may conflict with the Azure Functions platform | ||
azure-core==1.30.0 | ||
azure-core==1.31.0 | ||
azure-functions==1.17.0 | ||
azure-storage-blob==12.19.0 | ||
azure-identity==1.16.1 | ||
azure-mgmt-storage==21.1.0 | ||
azure-mgmt-resource==23.0.1 | ||
pydantic==1.10.13 | ||
azure-storage-blob==12.23.1 | ||
azure-identity==1.19.0 | ||
azure-mgmt-storage==21.2.1 | ||
azure-mgmt-resource==23.2.0 | ||
pydantic==1.10.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.19.4" | ||
__version__ = "0.20.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from enum import Enum | ||
from enum import StrEnum | ||
|
||
|
||
class RequestAction(str, Enum): | ||
class RequestAction(StrEnum): | ||
Install = "install" | ||
UnInstall = "uninstall" | ||
Upgrade = "upgrade" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Dev requirements | ||
pytest-asyncio==0.21.1 | ||
pytest-asyncio==0.24.0 | ||
httpx==0.25.0 | ||
mock==5.1.0 | ||
pytest==7.4.3 | ||
pytest==8.3.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
aiohttp==3.9.4 | ||
azure-core==1.30.0 | ||
azure-cosmos==4.5.1 | ||
azure-eventgrid==4.15.0 | ||
azure-identity==1.16.1 | ||
azure-mgmt-compute==30.3.0 | ||
azure-mgmt-cosmosdb==9.3.0 | ||
aiohttp==3.10.10 | ||
azure-core==1.31.0 | ||
azure-cosmos==4.7.0 | ||
azure-eventgrid==4.20.0 | ||
azure-identity==1.19.0 | ||
azure-mgmt-compute==33.0.0 | ||
azure-mgmt-cosmosdb==9.6.0 | ||
azure-mgmt-costmanagement==4.0.1 | ||
azure-mgmt-resource==23.0.1 | ||
azure-mgmt-storage==21.1.0 | ||
azure-monitor-opentelemetry~=1.6 | ||
azure-servicebus==7.11.3 | ||
azure-storage-blob==12.19.0 | ||
fastapi==0.110.0 | ||
fastapi-utils==0.2.1 | ||
gunicorn==22.0.0 | ||
azure-mgmt-resource==23.2.0 | ||
azure-mgmt-storage==21.2.1 | ||
azure-monitor-opentelemetry==1.6.4 | ||
azure-servicebus==7.12.3 | ||
azure-storage-blob==12.23.1 | ||
fastapi==0.115.3 | ||
gunicorn==23.0.0 | ||
jsonschema[format_nongpl]==4.19.1 | ||
msal==1.26.0 | ||
opentelemetry.instrumentation.logging>=0.44b0 | ||
pandas==2.0.3 | ||
PyJWT==2.8.0 | ||
pytz==2022.7 | ||
python-dateutil==2.8.2 | ||
msal==1.31.0 | ||
opentelemetry-instrumentation-logging==0.49b2 | ||
pandas==2.2.2 | ||
PyJWT==2.9.0 | ||
pytz==2024.2 | ||
python-dateutil==2.9.0 | ||
semantic-version==2.10.0 | ||
uvicorn[standard]==0.23.2 | ||
uvicorn[standard]==0.31.0 | ||
pydantic==1.10.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# if you update this file, update the install_requires in setup.py as well | ||
click==8.1.3 | ||
httpx~=0.23.0 | ||
msal==1.26.0 | ||
httpx==0.25.0 | ||
msal==1.31.0 | ||
jmespath==1.0.1 | ||
tabulate==0.9.0 | ||
pygments==2.16.1 | ||
PyJWT==2.8.0 | ||
azure-cli-core==2.57.0 | ||
azure-identity==1.16.1 | ||
aiohttp==3.9.4 | ||
PyJWT==2.9.0 | ||
azure-cli-core==2.65.0 | ||
azure-identity==1.19.0 | ||
aiohttp==3.10.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# API | ||
httpx==0.25.0 | ||
pytest==7.4.3 | ||
pytest-asyncio==0.21.1 | ||
starlette==0.36.3 | ||
pytest==8.3.3 | ||
pytest-asyncio==0.24.0 | ||
starlette==0.41.2 | ||
pytest-timeout==2.2.0 | ||
pytest-xdist==3.3.1 | ||
backoff==2.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.9.5" | ||
__version__ = "0.10.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
aiohttp==3.9.4 | ||
azure-cli-core==2.57.0 | ||
azure-identity==1.16.1 | ||
azure-monitor-opentelemetry~=1.6 | ||
azure-servicebus==7.11.3 | ||
opentelemetry.instrumentation.logging>=0.44b0 | ||
aiohttp==3.10.10 | ||
azure-cli-core==2.65.0 | ||
azure-identity==1.19.0 | ||
azure-monitor-opentelemetry==1.6.4 | ||
azure-servicebus==7.12.3 | ||
opentelemetry-instrumentation-logging==0.49b2 |
Oops, something went wrong.