Skip to content

Commit 0c04cec

Browse files
authored
update org (#363)
1 parent 75e40af commit 0c04cec

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"project_name": "dvc-objects",
88
"package_name": "dvc_objects",
99
"friendly_name": "DVC objects",
10-
"author": "Iterative",
10+
"author": "Treeverse",
1111
"email": "[email protected]",
12-
"github_user": "iterative",
12+
"github_user": "treeverse",
1313
"version": "0.0.0",
1414
"copyright_year": "2022",
1515
"license": "Apache-2.0",

CONTRIBUTING.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Here is a list of important resources for contributors:
1212
- `Code of Conduct`_
1313

1414
.. _Apache 2.0 license: https://opensource.org/licenses/Apache-2.0
15-
.. _Source Code: https://github.com/iterative/dvc-objects
16-
.. _Issue Tracker: https://github.com/iterative/dvc-objects/issues
15+
.. _Source Code: https://github.com/treeverse/dvc-objects
16+
.. _Issue Tracker: https://github.com/treeverse/dvc-objects/issues
1717

1818
How to report a bug
1919
-------------------
@@ -104,6 +104,6 @@ To run linting and code formatting checks, you can invoke a `lint` session in no
104104
It is recommended to open an issue before starting work on anything.
105105
This will allow a chance to talk it over with the owners and validate your approach.
106106

107-
.. _pull request: https://github.com/iterative/dvc-objects/pulls
107+
.. _pull request: https://github.com/treeverse/dvc-objects/pulls
108108
.. github-only
109109
.. _Code of Conduct: CODE_OF_CONDUCT.rst

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2022 Iterative.
189+
Copyright 2025 Treeverse.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ DVC objects
1717
.. |License| image:: https://img.shields.io/pypi/l/dvc-objects
1818
:target: https://opensource.org/licenses/Apache-2.0
1919
:alt: License
20-
.. |Tests| image:: https://github.com/iterative/dvc-objects/workflows/Tests/badge.svg
21-
:target: https://github.com/iterative/dvc-objects/actions?workflow=Tests
20+
.. |Tests| image:: https://github.com/treeverse/dvc-objects/workflows/Tests/badge.svg
21+
:target: https://github.com/treeverse/dvc-objects/actions?workflow=Tests
2222
:alt: Tests
23-
.. |Codecov| image:: https://codecov.io/gh/iterative/dvc-objects/branch/main/graph/badge.svg
24-
:target: https://app.codecov.io/gh/iterative/dvc-objects
23+
.. |Codecov| image:: https://codecov.io/gh/treeverse/dvc-objects/branch/main/graph/badge.svg
24+
:target: https://app.codecov.io/gh/treeverse/dvc-objects
2525
:alt: Codecov
2626
.. |pre-commit| image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
2727
:target: https://github.com/pre-commit/pre-commit
@@ -89,9 +89,9 @@ please `file an issue`_ along with a detailed description.
8989

9090
.. _Apache 2.0 license: https://opensource.org/licenses/Apache-2.0
9191
.. _PyPI: https://pypi.org/
92-
.. _file an issue: https://github.com/iterative/dvc-objects/issues
92+
.. _file an issue: https://github.com/treeverse/dvc-objects/issues
9393
.. _pip: https://pip.pypa.io/
9494
.. github-only
9595
.. _Contributor Guide: CONTRIBUTING.rst
96-
.. _dvc: https://github.com/iterative/dvc
97-
.. _dvc-data: https://github.com/iterative/dvc-data
96+
.. _dvc: https://github.com/treeverse/dvc
97+
.. _dvc-data: https://github.com/treeverse/dvc-data

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = "dvc objects - filesystem and object-db level abstractions to use
1010
readme = "README.rst"
1111
license = "Apache-2.0"
1212
license-files = ["LICENSE"]
13-
authors = [{ name = "Iterative", email = "[email protected]" }]
13+
authors = [{ name = "Treeverse", email = "[email protected]" }]
1414
classifiers = [
1515
"Programming Language :: Python :: 3",
1616
"Programming Language :: Python :: 3.9",
@@ -29,8 +29,8 @@ dependencies = [
2929
]
3030

3131
[project.urls]
32-
Issues = "https://github.com/iterative/dvc-objects/issues"
33-
Source = "https://github.com/iterative/dvc-objects"
32+
Issues = "https://github.com/treeverse/dvc-objects/issues"
33+
Source = "https://github.com/treeverse/dvc-objects"
3434

3535
[project.optional-dependencies]
3636
tests = [

src/dvc_objects/fs/system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
def hardlink(source: "AnyFSPath", link_name: "AnyFSPath") -> None:
1919
if not has_link:
2020
# some Python ports (eg: Termux) don't have os.link()
21-
# see: https://github.com/iterative/dvc/issues/10875
21+
# see: https://github.com/treeverse/dvc/issues/10875
2222
raise OSError(errno.ENOTSUP, "hardlink is not supported")
2323

2424
# NOTE: we should really be using `os.link()` here with

0 commit comments

Comments
 (0)