Skip to content

Commit 438259c

Browse files
committed
fix repository owner name to treeverse
1 parent 7b978fe commit 438259c

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
name: Publish dev package to test.pypi.org
5252
runs-on: ubuntu-latest
5353
needs: build
54-
if: ${{ github.event.action == 'published' || (github.repository == 'iterative/dvc' && github.event_name == 'push' && github.ref == 'refs/heads/main') }}
54+
if: ${{ github.event.action == 'published' || (github.repository == 'treeverse/dvc' && github.event_name == 'push' && github.ref == 'refs/heads/main') }}
5555

5656
environment:
5757
name: test-pypi

.github/workflows/plugin_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- uses: actions/checkout@v6
3131
with:
32-
repository: iterative/${{ matrix.plugin }}
32+
repository: treeverse/${{ matrix.plugin }}
3333
ref: main
3434
path: ${{ matrix.plugin }}
3535

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ message: >-
66
type: software
77
authors:
88
- name: The DVC team and contributors
9-
website: 'https://github.com/iterative'
10-
repository-code: 'https://github.com/iterative/dvc'
9+
website: 'https://github.com/treeverse'
10+
repository-code: 'https://github.com/treeverse/dvc'
1111
url: 'https://dvc.org'
1212
abstract: >-
1313
DVC is a tool for data science that takes advantage of existing software engineering toolset.

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -167,15 +167,15 @@ To install the development version, run:
167167

168168
.. code-block:: bash
169169
170-
pip install git+git://github.com/iterative/dvc
170+
pip install "dvc @ git+https://github.com/treeverse/dvc"
171171
172172
Package (Platform-specific)
173173
---------------------------
174174

175175
|Packages|
176176

177177
Self-contained packages for Linux, Windows, and Mac are available.
178-
The latest version of the packages can be found on the GitHub `releases page <https://github.com/iterative/dvc/releases>`_.
178+
The latest version of the packages can be found on the GitHub `releases page <https://github.com/treeverse/dvc/releases>`_.
179179

180180
Ubuntu / Debian (deb)
181181
^^^^^^^^^^^^^^^^^^^^^
@@ -237,11 +237,11 @@ Barrak, A., Eghan, E.E. and Adams, B. `On the Co-evolution of ML Pipelines and S
237237
:target: https://dvc.org
238238
:alt: DVC logo
239239

240-
.. |VS Code Extension Overview| image:: https://raw.githubusercontent.com/iterative/vscode-dvc/main/extension/docs/overview.gif
240+
.. |VS Code Extension Overview| image:: https://raw.githubusercontent.com/treeverse/vscode-dvc/main/extension/docs/overview.gif
241241
:alt: DVC Extension for VS Code
242242

243-
.. |CI| image:: https://github.com/iterative/dvc/actions/workflows/tests.yaml/badge.svg
244-
:target: https://github.com/iterative/dvc/actions/workflows/tests.yaml
243+
.. |CI| image:: https://github.com/treeverse/dvc/actions/workflows/tests.yaml/badge.svg
244+
:target: https://github.com/treeverse/dvc/actions/workflows/tests.yaml
245245
:alt: GHA Tests
246246

247247
.. |Maintainability| image:: https://img.shields.io/codeclimate/maintainability/iterative/dvc
@@ -292,8 +292,8 @@ Barrak, A., Eghan, E.E. and Adams, B. `On the Co-evolution of ML Pipelines and S
292292
:target: https://dvc.org/img/flow.gif
293293
:alt: how_dvc_works
294294

295-
.. |Contribs| image:: https://contrib.rocks/image?repo=iterative/dvc
296-
:target: https://github.com/iterative/dvc/graphs/contributors
295+
.. |Contribs| image:: https://contrib.rocks/image?repo=treeverse/dvc
296+
:target: https://github.com/treeverse/dvc/graphs/contributors
297297
:alt: Contributors
298298

299299
.. |VS Code| image:: https://img.shields.io/visual-studio-marketplace/v/Iterative.dvc?color=blue&label=VSCode&logo=visualstudiocode&logoColor=blue

dvc/cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def _log_exceptions(exc: Exception) -> Optional[int]:
9696
f"See {link} for more info."
9797
)
9898
else:
99-
link = format_link("https://github.com/iterative/dvc/issues")
99+
link = format_link("https://github.com/treeverse/dvc/issues")
100100
hint = f"\nPlease report this bug to {link}. Thank you!"
101101

102102
logger.exception(

dvc/commands/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _welcome_message():
2929
"{yellow}------------{nc}\n"
3030
f"- Check out the documentation: {fmt_link('https://dvc.org/doc')}\n"
3131
f"- Get help and share ideas: {fmt_link('https://dvc.org/chat')}\n"
32-
f"- Star us on GitHub: {fmt_link('https://github.com/iterative/dvc')}"
32+
f"- Star us on GitHub: {fmt_link('https://github.com/treeverse/dvc')}"
3333
).format(yellow=colorama.Fore.YELLOW, nc=colorama.Fore.RESET)
3434

3535
ui.write(msg)

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ keywords = [
1818
]
1919
license = "Apache-2.0"
2020
license-files = ["LICENSE"]
21-
maintainers = [{ name = "Iterative", email = "[email protected]" }]
21+
maintainers = [{ name = "Treeverse", email = "[email protected]" }]
2222
authors = [{ name = "Dmitry Petrov", email = "[email protected]" }]
2323
requires-python = ">=3.9"
2424
classifiers = [
@@ -130,8 +130,8 @@ webhdfs_kerberos = ["dvc-webhdfs[kerberos]>=3.1,<4"]
130130

131131
[project.urls]
132132
Documentation = "https://dvc.org/doc"
133-
Issues = "https://github.com/iterative/dvc/issues"
134-
Source = "https://github.com/iterative/dvc"
133+
Issues = "https://github.com/treeverse/dvc/issues"
134+
Source = "https://github.com/treeverse/dvc"
135135

136136
[project.scripts]
137137
dvc = "dvc.cli:main"

0 commit comments

Comments
 (0)