Skip to content

Commit 946844b

Browse files
committed
Replace git link from ssh to https in presets
1 parent 2c9d8c1 commit 946844b

4 files changed

Lines changed: 17 additions & 11 deletions

File tree

finecode_dev_common_preset/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ authors = [{ name = "Vladyslav Hnatiuk", email = "aders1234@gmail.com" }]
66
readme = "README.md"
77
requires-python = ">=3.11, < 3.14"
88
dependencies = [
9-
"fine_python_aksem @ git+ssh://git@github.com:Aksem/fine_python_aksem.git",
10-
"fine_python_recommended @ git+ssh://git@github.com:finecode-dev/finecode.git#subdirectory=presets/fine_python_recommended",
9+
"fine_python_aksem @ git+https://github.com/Aksem/fine_python_aksem.git",
10+
"fine_python_recommended @ git+https://github.com/finecode-dev/finecode.git#subdirectory=presets/fine_python_recommended",
1111
]
1212

1313
[tool.poetry]

presets/fine_python_format/pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ authors = [{ name = "Vladyslav Hnatiuk", email = "aders1234@gmail.com" }]
66
readme = "README.md"
77
requires-python = ">=3.11, < 3.14"
88
dependencies = [
9-
"finecode @ git+ssh://git@github.com:finecode-dev/finecode.git",
10-
"fine_python_black @ git+ssh://git@github.com:finecode-dev/finecode.git#subdirectory=extensions/fine_python_black",
11-
"fine_python_isort @ git+ssh://git@github.com:finecode-dev/finecode.git#subdirectory=extensions/fine_python_isort",
9+
"fine_python_black @ git+https://github.com/finecode-dev/finecode.git#subdirectory=extensions/fine_python_black",
10+
"fine_python_isort @ git+https://github.com/finecode-dev/finecode.git#subdirectory=extensions/fine_python_isort",
1211
]
1312

13+
[tool.poetry.group.dev.dependencies]
14+
finecode = { git = "https://github.com/finecode-dev/finecode.git" }
15+
finecode_dev_common_preset = { path = "../../finecode_dev_common_preset", develop = true }
1416

1517
[build-system]
1618
requires = ["poetry-core>=2.0.0,<3.0.0"]

presets/fine_python_lint/pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ authors = [{ name = "Vladyslav Hnatiuk", email = "aders1234@gmail.com" }]
66
readme = "README.md"
77
requires-python = ">=3.11, < 3.14"
88
dependencies = [
9-
"finecode @ git+ssh://git@github.com:finecode-dev/finecode.git",
10-
"fine_python_mypy @ git+ssh://git@github.com:finecode-dev/finecode.git#subdirectory=extensions/fine_python_mypy",
11-
"fine_python_flake8 @ git+ssh://git@github.com:finecode-dev/finecode.git#subdirectory=extensions/fine_python_flake8",
9+
"fine_python_mypy @ git+https://github.com/finecode-dev/finecode.git#subdirectory=extensions/fine_python_mypy",
10+
"fine_python_flake8 @ git+https://github.com/finecode-dev/finecode.git#subdirectory=extensions/fine_python_flake8",
1211
"flake8-bugbear (>=24.12.12,<25.0.0)",
1312
]
1413

14+
[tool.poetry.group.dev.dependencies]
15+
finecode = { git = "git@github.com:finecode-dev/finecode.git" }
16+
finecode_dev_common_preset = { path = "../finecode_dev_common_preset", develop = true }
1517

1618
[build-system]
1719
requires = ["poetry-core>=2.0.0,<3.0.0"]

presets/fine_python_recommended/pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ authors = [{ name = "Vladyslav Hnatiuk", email = "aders1234@gmail.com" }]
66
readme = "README.md"
77
requires-python = ">=3.11, < 3.14"
88
dependencies = [
9-
"finecode @ git+ssh://git@github.com:finecode-dev/finecode.git",
10-
"fine_python_format @ git+ssh://git@github.com:finecode-dev/finecode.git#subdirectory=presets/fine_python_format",
11-
"fine_python_lint @ git+ssh://git@github.com:finecode-dev/finecode.git#subdirectory=presets/fine_python_lint",
9+
"fine_python_format @ git+https://github.com/finecode-dev/finecode.git#subdirectory=presets/fine_python_format",
10+
"fine_python_lint @ git+https://github.com/finecode-dev/finecode.git#subdirectory=presets/fine_python_lint",
1211
]
1312

13+
[tool.poetry.group.dev.dependencies]
14+
finecode = { git = "git@github.com:finecode-dev/finecode.git" }
15+
finecode_dev_common_preset = { path = "../finecode_dev_common_preset", develop = true }
1416

1517
[build-system]
1618
requires = ["poetry-core>=2.0.0,<3.0.0"]

0 commit comments

Comments
 (0)