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

Fix: "cannot import name 'formatargspec' from 'inspect'" with Python 3.11 #4693

Merged
merged 6 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ These are the section headers that we use:
-->

## [Unreleased]()
- Fixed requirements for version of wrapt library conflicting with Python 3.11 ([#4693](https://github.com/argilla-io/argilla/pull/4693))
frascuchon marked this conversation as resolved.
Show resolved Hide resolved

## [1.26.1](https://github.com/argilla-io/argilla/compare/v1.26.0...v1.26.1)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies = [
# Aligned pydantic version with server fastAPI
"pydantic >= 1.10.7",
# monitoring
"wrapt >= 1.13,< 1.15",
"wrapt >= 1.14,< 1.15",
# weaksupervision
"numpy < 1.24.0",
# for progressbars
Expand Down
Loading