Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------------------
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion src/dvc_objects/fs/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading