-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Update pyproject toml and relock deps #3778
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
Open
dsfaccini
wants to merge
18
commits into
main
Choose a base branch
from
sync-and-relock-deps
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+4,848
−4,337
Open
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
cb8168d
Fix platform markers for outlines extras and regenerate uv.lock
dsfaccini 8fe9586
fix all type errors
dsfaccini 298eb01
undo environment markers and relock
dsfaccini 2dbe15d
wrong ignore
dsfaccini 45ae500
fix test-live errors
dsfaccini 6a17930
remove dev files
dsfaccini f935da4
update snapshots and mcp
dsfaccini 0b15fc3
try linting in CI
dsfaccini 8a88510
re add transformers on mac
dsfaccini 9fd30a4
Merge branch 'main' into sync-and-relock-deps
dsfaccini 35907e5
speed up tests
dsfaccini 0e25361
upgrade prefect
dsfaccini 1b55828
try fix
dsfaccini 23f9db4
try fix
dsfaccini 7fc8615
try fix
dsfaccini cf98407
move fix to conftest
dsfaccini 03c3cba
try fix
dsfaccini 2adf83d
sync solution
dsfaccini File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -88,6 +88,12 @@ members = [ | |
|
|
||
| [tool.uv] | ||
| default-groups = ["dev", "lint", "docs"] | ||
| environments = [ | ||
| "sys_platform == 'linux' and platform_machine == 'x86_64'", | ||
| "sys_platform == 'linux' and platform_machine == 'aarch64'", | ||
| "sys_platform == 'darwin' and platform_machine == 'arm64'", | ||
| "sys_platform == 'darwin' and platform_machine == 'x86_64'", | ||
| ] | ||
|
||
|
|
||
| [dependency-groups] | ||
| dev = [ | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why did those change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, I got why we need this one, why do we need the
environments?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I restablished this part because was getting a type error on the
from outlines.models.transformers import from_transformersintests/conftest.pyI guess if someone is contributing from a windows PC they'll also have that type error