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

Antonyjin upgrade pydantic version #293

Open
wants to merge 20 commits into
base: master
Choose a base branch
from

Conversation

Antonyjin
Copy link
Member

@Antonyjin Antonyjin commented Oct 21, 2024

This issue aims to upgrade the pydantic version to v2.

Related Jira tickets : ALEPH-149

Self proofreading checklist

  • The new code clear, easy to read and well commented.
  • New code does not duplicate the functions of builtin or popular libraries.
  • An LLM was used to review the new code and look for simplifications.

Changes

Many functions will be deprecated using pydantic v2 and completly unusable when using pydantic v3. So all of them have been replaced with the good ones.

How to test

hatch run testing-test-cov

Notes

At the moment, aleph-message and aleph-sdk-python version use the github link. We need to wait the release of these two repositories and then put the right version instead of the github URL

@Antonyjin Antonyjin linked an issue Oct 21, 2024 that may be closed by this pull request
@Antonyjin Antonyjin marked this pull request as draft October 21, 2024 15:44
Copy link

Failed to retrieve llama text: POST 504:

504 Gateway Time-out


The server didn't respond in time.

Copy link

codecov bot commented Oct 25, 2024

Codecov Report

Attention: Patch coverage is 61.11111% with 14 lines in your changes missing coverage. Please review.

Project coverage is 61.45%. Comparing base (f5c89eb) to head (55db142).

Files with missing lines Patch % Lines
src/aleph_client/commands/utils.py 69.23% 4 Missing ⚠️
src/aleph_client/commands/instance/__init__.py 50.00% 3 Missing ⚠️
src/aleph_client/commands/program.py 40.00% 3 Missing ⚠️
src/aleph_client/commands/files.py 50.00% 2 Missing ⚠️
src/aleph_client/commands/message.py 60.00% 2 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master     #293      +/-   ##
==========================================
- Coverage   61.60%   61.45%   -0.15%     
==========================================
  Files          18       18              
  Lines        3183     3194      +11     
  Branches      448      448              
==========================================
+ Hits         1961     1963       +2     
- Misses        984      991       +7     
- Partials      238      240       +2     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Aleph-message and sdk now uses pydantic v2 but no released yet
Using the github link atm and wait for the release.
When upgrading the pydantic version, some function are / will become
deprecated. replacing them in those files.
Added `default=extended_json_encoder` to `json.dumps()` to handle serialization
of non-native JSON types, such as dates and other complex objects.

Replacing function that are / will be deprecated in pydantic v2 and v3
Pydantic>=2 is not compatible with fastapi<0.100.0
Conflit between pydantic and yamlfix
black did not pass
With Pydantic v2, strict type validation is enforced. The type field is expected
to have the exact value "POST" as a literal.
@Antonyjin Antonyjin force-pushed the antonyjin-upgrade-pydantic-version branch from 8f522ba to e621718 Compare December 2, 2024 17:20
Antonyjin and others added 10 commits December 3, 2024 02:27
- Unused varible deleted
- Replacing parse_obj() by model_validate()
- Replacing copy() by model_copy()
- Replacing dict() by model_dump()
…cause of some changes on aleph_message

Before any change, there were classes dedicated to the size of Ephemeral and Persistent class such as
PersistentVolumeSizeMb and EphemeralVolumeSizeMb.
Now, the size is included inside the classes EphemeralVolume and PersistentVolume so have to access the size
by another method.

- Creating a function to get the max and min size, that way it is more rigorous
- Calling this function to get max and min size of the different volumes
- Refactor the Dict() class inside the mocks test file to allow any key-value pair to be
passed to the model.
@Antonyjin Antonyjin marked this pull request as ready for review March 14, 2025 15:16
Copy link

Failed to retrieve llama text: POST 500: Traceback (most recent call last):
File "/usr/local/lib/python3.9/dist-packages/aiohttp/connector.py", line 980, in _wrap_create_connection
return await self._loop.create_connection(*args, **kwargs) # type: ignore[return-value] # noqa
File "/usr/lib/python3.9/asyncio/base_events.py", line 1056, in create_connection
raise exceptions[0]
File "/usr/lib/python3.9/asyncio/base_events.py", line 1041, in create_connection
sock = await self._connect_sock(
File "/usr/lib/python3.9/asyncio/base_events.py", line 955, in _connect_sock
await self.sock_connect(sock, address)
File "/usr/lib/python3.9/asyncio/selector_events.py", line 502, in sock_connect
return await fut
File "/usr/lib/python3.9/asyncio/selector_events.py", line 537, in _sock_connect_cb
raise OSError(err, f'Connect call failed {address}')
ConnectionRefusedError: [Errno 111] Connect call failed ('127.0.0.1', 8080)

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "/root/init1.py", line 406, in process_instruction
headers, body, output, output_data = await run_executable_http(
File "/root/init1.py", line 342, in run_executable_http
headers, body = await make_request(session, scope)
File "/root/init1.py", line 311, in make_request
async with session.request(
File "/usr/local/lib/python3.9/dist-packages/aiohttp/client.py", line 1141, in aenter
self._resp = await self._coro
File "/usr/local/lib/python3.9/dist-packages/aiohttp/client.py", line 536, in _request
conn = await self._connector.connect(
File "/usr/local/lib/python3.9/dist-packages/aiohttp/connector.py", line 540, in connect
proto = await self._create_connection(req, traces, timeout)
File "/usr/local/lib/python3.9/dist-packages/aiohttp/connector.py", line 901, in _create_connection
_, proto = await self._create_direct_connection(req, traces, timeout)
File "/usr/local/lib/python3.9/dist-packages/aiohttp/connector.py", line 1206, in _create_direct_connection
raise last_exc
File "/usr/local/lib/python3.9/dist-packages/aiohttp/connector.py", line 1175, in _create_direct_connection
transp, proto = await self._wrap_create_connection(
File "/usr/local/lib/python3.9/dist-packages/aiohttp/connector.py", line 988, in _wrap_create_connection
raise client_error(req.connection_key, exc) from exc
aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host localhost:8080 ssl:default [Connect call failed ('127.0.0.1', 8080)]

Arnaud made some changes about getting hashes that were better but I deleted by mistakes

Putting back his code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Upgrade pydantic version
1 participant