-
Notifications
You must be signed in to change notification settings - Fork 45
Migrate to uv for python package management #590
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
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
5b38c2f
Migrate from pip/setup.py to uv for package management
JayThomason 08068cf
update uv install action version
JayThomason 6535bcd
Fix uv migration: add missing msgpack dep, commit lockfile
JayThomason cd7d1b5
update documentation and examples post migration
JayThomason 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
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 |
|---|---|---|
| @@ -1,3 +1,6 @@ | ||
| # uv | ||
| .venv/ | ||
|
|
||
| # Byte-compiled / optimized / DLL files | ||
| __pycache__/ | ||
| *.py[cod] | ||
|
|
||
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
|---|---|---|
| @@ -0,0 +1,88 @@ | ||
| [build-system] | ||
| requires = ["hatchling"] | ||
| build-backend = "hatchling.build" | ||
|
|
||
| [project] | ||
| name = "deltacat" | ||
| dynamic = ["version"] | ||
| description = "DeltaCAT is a portable Pythonic Data Lakehouse powered by Ray." | ||
| readme = "README.md" | ||
| license = "Apache-2.0" | ||
| requires-python = ">=3.9,<3.11" | ||
| authors = [{ name = "Ray Team" }] | ||
| classifiers = [ | ||
| "Development Status :: 4 - Beta", | ||
| "Intended Audience :: Developers", | ||
| "Programming Language :: Python :: 3 :: Only", | ||
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Operating System :: OS Independent", | ||
| ] | ||
| dependencies = [ | ||
| "aws-embedded-metrics==3.2.0", | ||
| "boto3~=1.34", | ||
| "google-cloud-storage", | ||
| "gcsfs==2025.3.2", | ||
| "daft==0.5.22", | ||
| "intervaltree==3.1.0", | ||
| "msgpack~=1.0.7", | ||
| "numpy==1.23.2", | ||
| "pandas==2.2.3", | ||
| "polars==1.28.1", | ||
| "pyarrow==16.0.0", | ||
| "pydantic!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<2.10.0", | ||
| "pymemcache==4.0.0", | ||
| "ray[default]==2.46.0", | ||
| "tenacity==8.2.3", | ||
| "typing-extensions>=4.6.1", | ||
| "redis==5.0.0", | ||
| "schedule==1.2.0", | ||
| ] | ||
|
|
||
| [project.optional-dependencies] | ||
| iceberg = [ | ||
| "pyiceberg[glue]>=0.9.0", | ||
| "pyiceberg[hive]>=0.9.0", | ||
| "pyiceberg[sql-sqlite]>=0.9.0", | ||
| ] | ||
| beam = ["apache-beam==2.65.0"] | ||
| s3fs = ["s3fs==2025.3.2"] | ||
| dev = [ | ||
JayThomason marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "apache-beam==2.65.0", | ||
| "black==22.12.0", | ||
| "faker==33.1.0", | ||
| "faker-file>=0.5.0", | ||
| "flake8==5.0.4", | ||
| "ipywidgets==8.1.5", | ||
| "isort==5.10.1", | ||
| "memray==1.6.0; platform_system != 'Windows' and sys_platform != 'darwin' and platform_machine != 'arm64' and platform_machine != 'aarch64'", | ||
| "moto==4.1.12", | ||
| "Pillow==11.0.0", | ||
| "pre-commit==2.20.0", | ||
| "pyiceberg[glue]>=0.9.0", | ||
| "pyiceberg[hive]>=0.9.0", | ||
| "pyiceberg[sql-sqlite]>=0.9.0", | ||
| "pyspark==3.5.3", | ||
| "pytest==7.2.0", | ||
| "pytest-benchmark==4.0.0", | ||
| "pytest-cov==4.0.0", | ||
| "pytest-mock==3.14.0", | ||
| "requests-mock==1.11.0", | ||
| "sphinx==7.2.6", | ||
| "tabulate==0.9.0", | ||
| "torch==2.8.0", | ||
| "torchvision==0.23.0", | ||
| "transformers==4.48.0", | ||
| ] | ||
|
|
||
| [project.urls] | ||
| Homepage = "https://github.com/ray-project/deltacat" | ||
|
|
||
| [tool.hatch.version] | ||
| path = "deltacat/__init__.py" | ||
|
|
||
| [tool.hatch.build.targets.sdist] | ||
| include = ["/deltacat"] | ||
|
|
||
| [tool.hatch.build.targets.wheel] | ||
| packages = ["deltacat"] | ||
This file was deleted.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.