diff --git a/.cruft.json b/.cruft.json index da7c4aa..7e6d577 100644 --- a/.cruft.json +++ b/.cruft.json @@ -7,9 +7,9 @@ "project_name": "dvc-objects", "package_name": "dvc_objects", "friendly_name": "DVC objects", - "author": "Iterative", + "author": "Treeverse", "email": "support@dvc.org", - "github_user": "iterative", + "github_user": "treeverse", "version": "0.0.0", "copyright_year": "2022", "license": "Apache-2.0", diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index e4078f6..68baa3f 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -12,8 +12,8 @@ Here is a list of important resources for contributors: - `Code of Conduct`_ .. _Apache 2.0 license: https://opensource.org/licenses/Apache-2.0 -.. _Source Code: https://github.com/iterative/dvc-objects -.. _Issue Tracker: https://github.com/iterative/dvc-objects/issues +.. _Source Code: https://github.com/treeverse/dvc-objects +.. _Issue Tracker: https://github.com/treeverse/dvc-objects/issues How to report a bug ------------------- @@ -104,6 +104,6 @@ To run linting and code formatting checks, you can invoke a `lint` session in no It is recommended to open an issue before starting work on anything. This will allow a chance to talk it over with the owners and validate your approach. -.. _pull request: https://github.com/iterative/dvc-objects/pulls +.. _pull request: https://github.com/treeverse/dvc-objects/pulls .. github-only .. _Code of Conduct: CODE_OF_CONDUCT.rst diff --git a/LICENSE b/LICENSE index 6bc4e6e..c8413d4 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2022 Iterative. + Copyright 2025 Treeverse. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.rst b/README.rst index 90717f6..dedc631 100644 --- a/README.rst +++ b/README.rst @@ -17,11 +17,11 @@ DVC objects .. |License| image:: https://img.shields.io/pypi/l/dvc-objects :target: https://opensource.org/licenses/Apache-2.0 :alt: License -.. |Tests| image:: https://github.com/iterative/dvc-objects/workflows/Tests/badge.svg - :target: https://github.com/iterative/dvc-objects/actions?workflow=Tests +.. |Tests| image:: https://github.com/treeverse/dvc-objects/workflows/Tests/badge.svg + :target: https://github.com/treeverse/dvc-objects/actions?workflow=Tests :alt: Tests -.. |Codecov| image:: https://codecov.io/gh/iterative/dvc-objects/branch/main/graph/badge.svg - :target: https://app.codecov.io/gh/iterative/dvc-objects +.. |Codecov| image:: https://codecov.io/gh/treeverse/dvc-objects/branch/main/graph/badge.svg + :target: https://app.codecov.io/gh/treeverse/dvc-objects :alt: Codecov .. |pre-commit| image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white :target: https://github.com/pre-commit/pre-commit @@ -89,9 +89,9 @@ please `file an issue`_ along with a detailed description. .. _Apache 2.0 license: https://opensource.org/licenses/Apache-2.0 .. _PyPI: https://pypi.org/ -.. _file an issue: https://github.com/iterative/dvc-objects/issues +.. _file an issue: https://github.com/treeverse/dvc-objects/issues .. _pip: https://pip.pypa.io/ .. github-only .. _Contributor Guide: CONTRIBUTING.rst -.. _dvc: https://github.com/iterative/dvc -.. _dvc-data: https://github.com/iterative/dvc-data +.. _dvc: https://github.com/treeverse/dvc +.. _dvc-data: https://github.com/treeverse/dvc-data diff --git a/pyproject.toml b/pyproject.toml index 2072a31..a80979f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ description = "dvc objects - filesystem and object-db level abstractions to use readme = "README.rst" license = "Apache-2.0" license-files = ["LICENSE"] -authors = [{ name = "Iterative", email = "support@dvc.org" }] +authors = [{ name = "Treeverse", email = "support@dvc.org" }] classifiers = [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", @@ -29,8 +29,8 @@ dependencies = [ ] [project.urls] -Issues = "https://github.com/iterative/dvc-objects/issues" -Source = "https://github.com/iterative/dvc-objects" +Issues = "https://github.com/treeverse/dvc-objects/issues" +Source = "https://github.com/treeverse/dvc-objects" [project.optional-dependencies] tests = [ diff --git a/src/dvc_objects/fs/system.py b/src/dvc_objects/fs/system.py index 63b141f..c0f0ceb 100644 --- a/src/dvc_objects/fs/system.py +++ b/src/dvc_objects/fs/system.py @@ -18,7 +18,7 @@ def hardlink(source: "AnyFSPath", link_name: "AnyFSPath") -> None: if not has_link: # some Python ports (eg: Termux) don't have os.link() - # see: https://github.com/iterative/dvc/issues/10875 + # see: https://github.com/treeverse/dvc/issues/10875 raise OSError(errno.ENOTSUP, "hardlink is not supported") # NOTE: we should really be using `os.link()` here with