2pisoftware / 2pisoftware/weedremeed-scripts

requirements.txt & pyproject.toml pin weedremeed-client to inaccessible internal GitLab

オープン 初心者向け
#2 コメント 1 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
Python
スター
0
フォーク
0
PR マージ指標
30日以内にマージされた PR はありません

説明

## Summary
`requirements.txt` and `pyproject.toml` install `weedremeed-client` from the **internal GitLab** repo, which external users can't access:

`requirements.txt`:
```
weedremeed-client @ git+ssh://git@gitlab.internal.2pisoftware.com/customers/CISS/weedremeed/weedremeed-python@ff93f46f91f7a016847f90e9f32591d2fef6d78b
```

`pyproject.toml` (`[tool.uv.sources]`):
```
weedremeed-client = { git = "ssh://git@gitlab.internal.2pisoftware.com/customers/CISS/weedremeed/weedremeed-python" }
```

The host is reachable, but the repo is private (requires an SSH key registered to a GitLab account **and** a repo grant), so `pip install -r requirements.txt` fails for anyone outside 2pisoftware with `Permission denied (publickey)`.

## Suggested fix
The library is now publicly mirrored at https://github.com/2pisoftware/weedremeed-python, and its `main` HEAD matches the pinned commit `ff93f46f91f7a016847f90e9f32591d2fef6d78b`. Pointing both files at the public mirror would let external users install directly, e.g.:

```
weedremeed-client @ git+https://github.com/2pisoftware/weedremeed-python@ff93f46f91f7a016847f90e9f32591d2fef6d78b
```

(plus the equivalent change in `pyproject.toml`). Verified: installing from the mirror builds `weedremeed-client 1.0.0` identically to the GitLab pin.

cc @careck

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

調査の方向性

The issue is in two files: requirements.txt and pyproject.toml. In requirements.txt, replace the git+ssh URL with the public GitHub mirror URL. In pyproject.toml, update the git source under [tool.uv.sources]. Verify the fix by running a pip install command to ensure the dependency resolves correctly from the new location.

索引モデルが issue の本文から書いたものです。

評価

技術スタック
python
領域
build-system
issue の種類
バグ
難易度
1/5
見積もり時間
1時間未満
活発さ
静か
明瞭さ
明確に書かれている
初心者へのやさしさ
90/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。