Skip to content

Commit 5ff976e

Browse files
authored
chore: move to osprey-oss GitHub organisation (#824)
1 parent 9a6432b commit 5ff976e

7 files changed

Lines changed: 248 additions & 248 deletions

File tree

CHANGELOG.md

Lines changed: 72 additions & 72 deletions
Large diffs are not rendered by default.

docs/CHANGELOG.md

Lines changed: 72 additions & 72 deletions
Large diffs are not rendered by default.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ future.
3030

3131
Although `migrate-to-uv` matches current package manager definition as closely as possible when performing the migration, it is still heavily recommended to double check the end result, especially if you are migrating a package that is meant to be publicly distributed.
3232

33-
If you notice a behavior that does not match the previous package manager when migrating, please [raise an issue](https://github.com/mkniewallner/migrate-to-uv/issues), if not already reported.
33+
If you notice a behavior that does not match the previous package manager when migrating, please [raise an issue](https://github.com/osprey-oss/migrate-to-uv/issues), if not already reported.
3434

3535
## Features
3636

mkdocs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
site_name: migrate-to-uv
22
edit_uri: edit/main/docs/
3-
repo_name: mkniewallner/migrate-to-uv
4-
repo_url: https://github.com/mkniewallner/migrate-to-uv
5-
site_url: https://mkniewallner.github.io/migrate-to-uv
3+
repo_name: osprey-oss/migrate-to-uv
4+
repo_url: https://github.com/osprey-oss/migrate-to-uv
5+
site_url: https://osprey-oss.github.io/migrate-to-uv
66
site_description: Migrate to uv from another package manager.
77
site_author: Mathieu Kniewallner
88

@@ -49,7 +49,7 @@ theme:
4949
extra:
5050
social:
5151
- icon: fontawesome/brands/github
52-
link: https://github.com/mkniewallner/migrate-to-uv
52+
link: https://github.com/osprey-oss/migrate-to-uv
5353
- icon: fontawesome/brands/python
5454
link: https://pypi.org/project/migrate-to-uv/
5555

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ classifiers = [
3636
]
3737

3838
[project.urls]
39-
Documentation = "https://mkniewallner.github.io/migrate-to-uv/"
40-
Repository = "https://github.com/mkniewallner/migrate-to-uv"
41-
Changelog = "https://github.com/mkniewallner/migrate-to-uv/blob/main/CHANGELOG.md"
39+
Documentation = "https://osprey-oss.github.io/migrate-to-uv/"
40+
Repository = "https://github.com/osprey-oss/migrate-to-uv"
41+
Changelog = "https://github.com/osprey-oss/migrate-to-uv/blob/main/CHANGELOG.md"
4242
Funding = "https://github.com/sponsors/mkniewallner"
4343

4444
[dependency-groups]

src/converters/poetry/version.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,30 +90,30 @@ impl ParseVersionError {
9090
match self.kind {
9191
ParseVersionErrorKind::OrOperator(operator) => {
9292
format!(
93-
"\"{}\" dependency with version \"{}\" contains \"{}\", which is specific to Poetry and not supported by PEP 440. See https://mkniewallner.github.io/migrate-to-uv/supported-package-managers/#operator for guidance.",
93+
"\"{}\" dependency with version \"{}\" contains \"{}\", which is specific to Poetry and not supported by PEP 440. See https://osprey-oss.github.io/migrate-to-uv/supported-package-managers/#operator for guidance.",
9494
dependency.bold(),
9595
self.version.bold(),
9696
operator.bold(),
9797
)
9898
}
9999
ParseVersionErrorKind::PythonMarkerOrOperator(operator) => {
100100
format!(
101-
"\"{}\" dependency with python marker \"{}\" contains \"{}\", which is specific to Poetry and not supported by PEP 440. See https://mkniewallner.github.io/migrate-to-uv/supported-package-managers/#operator for guidance.",
101+
"\"{}\" dependency with python marker \"{}\" contains \"{}\", which is specific to Poetry and not supported by PEP 440. See https://osprey-oss.github.io/migrate-to-uv/supported-package-managers/#operator for guidance.",
102102
dependency.bold(),
103103
self.version.bold(),
104104
operator.bold(),
105105
)
106106
}
107107
ParseVersionErrorKind::PythonMarker => {
108108
format!(
109-
"\"{}\" dependency with python marker \"{}\" could not be transformed to PEP 440 format. Make sure to check https://mkniewallner.github.io/migrate-to-uv/supported-package-managers/#unsupported-version-specifiers.",
109+
"\"{}\" dependency with python marker \"{}\" could not be transformed to PEP 440 format. Make sure to check https://osprey-oss.github.io/migrate-to-uv/supported-package-managers/#unsupported-version-specifiers.",
110110
dependency.bold(),
111111
self.version.bold(),
112112
)
113113
}
114114
ParseVersionErrorKind::Other => {
115115
format!(
116-
"\"{}\" dependency with version \"{}\" could not be transformed to PEP 440 format. Make sure to check https://mkniewallner.github.io/migrate-to-uv/supported-package-managers/#unsupported-version-specifiers.",
116+
"\"{}\" dependency with version \"{}\" could not be transformed to PEP 440 format. Make sure to check https://osprey-oss.github.io/migrate-to-uv/supported-package-managers/#unsupported-version-specifiers.",
117117
dependency.bold(),
118118
self.version.bold(),
119119
)

0 commit comments

Comments
 (0)