Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: handle unexpected hg repo when parse scm version #237

Merged
merged 1 commit into from
May 14, 2024

Conversation

huxuan
Copy link
Contributor

@huxuan huxuan commented May 7, 2024

The error happens when running pdm install in a git repo while git command does not work as expected but hg command is available.

For my case, the permission of .git directory is invalid when I try to mount the working directory into a container and then the error happen. Though it is not a critical error, it might be better to handle it well.

traceback for the error:

Traceback (most recent call last):
  File "/usr/local/bin/pdm", line 8, in <module>
    sys.exit(main())
             ^^^^^^
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/core.py", line 358, in main
    return core.main(args or sys.argv[1:])
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/core.py", line 276, in main
    raise cast(Exception, err).with_traceback(traceback) from None
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/core.py", line 271, in main
    self.handle(project, options)
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/core.py", line 207, in handle
    command.handle(project, options)
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/cli/commands/install.py", line 100, in handle
    actions.do_sync(
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/cli/actions.py", line 238, in do_sync
    synchronizer.synchronize()
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/installers/synchronizers.py", line 475, in synchronize
    self.install_candidate(self_key, progress)
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/installers/synchronizers.py", line 282, in install_candidate
    self.manager.install(can)
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/installers/manager.py", line 33, in install
    prepared.build(),
    ^^^^^^^^^^^^^^^^
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/models/candidates.py", line 416, in build
    self._cached = Path(builder.build(build_dir, metadata_directory=self._metadata_dir))
                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/builders/editable.py", line 36, in build
    filename = self._hook.build_editable(out_dir, self.config_settings, metadata_directory)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pyproject_hooks/_impl.py", line 339, in build_editable
    return self._call_hook(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pyproject_hooks/_impl.py", line 392, in _call_hook
    self._subprocess_runner(
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/builders/base.py", line 259, in subprocess_runner
    return log_subprocessor(cmd, cwd, extra_environ=env)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/builders/base.py", line 106, in log_subprocessor
    raise build_error(e) from None
pdm.exceptions.BuildError: Build backend raised error: Showing the last 10 lines of the build output:
  File "/tmp/pdm-build-env-evu4ajha-shared/lib/python3.11/site-packages/pdm/backend/hooks/version/__init__.py", line 91, in resolve_version_from_scm
    version = get_version_from_scm(
              ^^^^^^^^^^^^^^^^^^^^^
  File "/tmp/pdm-build-env-evu4ajha-shared/lib/python3.11/site-packages/pdm/backend/hooks/version/scm.py", line 341, in get_version_from_scm
    version = func(root, config)
              ^^^^^^^^^^^^^^^^^^
  File "/tmp/pdm-build-env-evu4ajha-shared/lib/python3.11/site-packages/pdm/backend/hooks/version/scm.py", line 290, in hg_parse_version
    tag, node, branch = output.rsplit("-", 2)
    ^^^^^^^^^^^^^^^^^

GitHub workflow run: https://github.com/huxuan/ss-python/actions/runs/8983209042/job/24672464323

Copy link

netlify bot commented May 7, 2024

Deploy Preview for pdm-backend-docs ready!

Name Link
🔨 Latest commit 78d7767
🔍 Latest deploy log https://app.netlify.com/sites/pdm-backend-docs/deploys/6639fb703343240008c8e7bf
😎 Deploy Preview https://deploy-preview-237--pdm-backend-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@huxuan
Copy link
Contributor Author

huxuan commented May 14, 2024

Hi @frostming, may I wonder whether it is possible to release a new version with this fix?

@frostming frostming merged commit d6feccf into pdm-project:main May 14, 2024
26 checks passed
@huxuan huxuan deleted the xuan.hu/unpexted-hg-repo branch May 14, 2024 00:26
cutoffthetop referenced this pull request in robert-koch-institut/mex-backend Jul 1, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [pdm-backend](https://togithub.com/pdm-project/pdm-backend) |
build-system.requires | patch | `==2.3.0` -> `==2.3.1` |

---

### Release Notes

<details>
<summary>pdm-project/pdm-backend (pdm-backend)</summary>

###
[`v2.3.1`](https://togithub.com/pdm-project/pdm-backend/releases/tag/2.3.1)

[Compare
Source](https://togithub.com/pdm-project/pdm-backend/compare/2.3.0...2.3.1)

#####    🐞 Bug Fixes

- Handle unexpected hg repo when parse scm version  -  by
[@&#8203;huxuan](https://togithub.com/huxuan) in
[https://github.com/pdm-project/pdm-backend/issues/237](https://togithub.com/pdm-project/pdm-backend/issues/237)
[<samp>(d6fec)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/d6feccf)
- Treat PDM_BUILD_SCM_VERSION empty string as unset  -  by
[@&#8203;ryukinix](https://togithub.com/ryukinix) in
[https://github.com/pdm-project/pdm-backend/issues/238](https://togithub.com/pdm-project/pdm-backend/issues/238)
[<samp>(596f1)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/596f1dc)
- Honor the current working directory when importing pdm_build.py Close
[#&#8203;245](https://togithub.com/pdm-project/pdm-backend/issues/245)
 -  by [@&#8203;frostming](https://togithub.com/frostming) in
[https://github.com/pdm-project/pdm-backend/issues/245](https://togithub.com/pdm-project/pdm-backend/issues/245)
[<samp>(ba98c)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/ba98c85)
- Errors when using the `editables` backend with the `includes` field.
Fixes
[#&#8203;242](https://togithub.com/pdm-project/pdm-backend/issues/242)
 -  by [@&#8203;frostming](https://togithub.com/frostming) in
[https://github.com/pdm-project/pdm-backend/issues/242](https://togithub.com/pdm-project/pdm-backend/issues/242)
[<samp>(59396)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/59396e3)
- Vendor editables  -  by
[@&#8203;frostming](https://togithub.com/frostming)
[<samp>(95da7)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/95da73a)

#####     [View changes on
GitHub](https://togithub.com/pdm-project/pdm-backend/compare/2.3.0...2.3.1)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MTcuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQxNy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
cutoffthetop referenced this pull request in robert-koch-institut/mex-common Jul 8, 2024
This PR contains the following updates:

| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [pdm-backend](https://togithub.com/pdm-project/pdm-backend) |
build-system.requires | patch | `==2.3.0` -> `==2.3.1` | `2.3.2` |

---

### Release Notes

<details>
<summary>pdm-project/pdm-backend (pdm-backend)</summary>

###
[`v2.3.1`](https://togithub.com/pdm-project/pdm-backend/releases/tag/2.3.1)

[Compare
Source](https://togithub.com/pdm-project/pdm-backend/compare/2.3.0...2.3.1)

#####    🐞 Bug Fixes

- Handle unexpected hg repo when parse scm version  -  by
[@&#8203;huxuan](https://togithub.com/huxuan) in
[https://github.com/pdm-project/pdm-backend/issues/237](https://togithub.com/pdm-project/pdm-backend/issues/237)
[<samp>(d6fec)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/d6feccf)
- Treat PDM_BUILD_SCM_VERSION empty string as unset  -  by
[@&#8203;ryukinix](https://togithub.com/ryukinix) in
[https://github.com/pdm-project/pdm-backend/issues/238](https://togithub.com/pdm-project/pdm-backend/issues/238)
[<samp>(596f1)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/596f1dc)
- Honor the current working directory when importing pdm_build.py Close
[#&#8203;245](https://togithub.com/pdm-project/pdm-backend/issues/245)
 -  by [@&#8203;frostming](https://togithub.com/frostming) in
[https://github.com/pdm-project/pdm-backend/issues/245](https://togithub.com/pdm-project/pdm-backend/issues/245)
[<samp>(ba98c)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/ba98c85)
- Errors when using the `editables` backend with the `includes` field.
Fixes
[#&#8203;242](https://togithub.com/pdm-project/pdm-backend/issues/242)
 -  by [@&#8203;frostming](https://togithub.com/frostming) in
[https://github.com/pdm-project/pdm-backend/issues/242](https://togithub.com/pdm-project/pdm-backend/issues/242)
[<samp>(59396)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/59396e3)
- Vendor editables  -  by
[@&#8203;frostming](https://togithub.com/frostming)
[<samp>(95da7)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/95da73a)

#####     [View changes on
GitHub](https://togithub.com/pdm-project/pdm-backend/compare/2.3.0...2.3.1)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MTcuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
erichesse referenced this pull request in robert-koch-institut/mex-extractors Jul 8, 2024
This PR contains the following updates:

| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [pdm-backend](https://togithub.com/pdm-project/pdm-backend) |
build-system.requires | patch | `==2.3.0` -> `==2.3.1` | `2.3.2` |

---

### Release Notes

<details>
<summary>pdm-project/pdm-backend (pdm-backend)</summary>

###
[`v2.3.1`](https://togithub.com/pdm-project/pdm-backend/releases/tag/2.3.1)

[Compare
Source](https://togithub.com/pdm-project/pdm-backend/compare/2.3.0...2.3.1)

#####    🐞 Bug Fixes

- Handle unexpected hg repo when parse scm version  -  by
[@&#8203;huxuan](https://togithub.com/huxuan) in
[https://github.com/pdm-project/pdm-backend/issues/237](https://togithub.com/pdm-project/pdm-backend/issues/237)
[<samp>(d6fec)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/d6feccf)
- Treat PDM_BUILD_SCM_VERSION empty string as unset  -  by
[@&#8203;ryukinix](https://togithub.com/ryukinix) in
[https://github.com/pdm-project/pdm-backend/issues/238](https://togithub.com/pdm-project/pdm-backend/issues/238)
[<samp>(596f1)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/596f1dc)
- Honor the current working directory when importing pdm_build.py Close
[#&#8203;245](https://togithub.com/pdm-project/pdm-backend/issues/245)
 -  by [@&#8203;frostming](https://togithub.com/frostming) in
[https://github.com/pdm-project/pdm-backend/issues/245](https://togithub.com/pdm-project/pdm-backend/issues/245)
[<samp>(ba98c)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/ba98c85)
- Errors when using the `editables` backend with the `includes` field.
Fixes
[#&#8203;242](https://togithub.com/pdm-project/pdm-backend/issues/242)
 -  by [@&#8203;frostming](https://togithub.com/frostming) in
[https://github.com/pdm-project/pdm-backend/issues/242](https://togithub.com/pdm-project/pdm-backend/issues/242)
[<samp>(59396)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/59396e3)
- Vendor editables  -  by
[@&#8203;frostming](https://togithub.com/frostming)
[<samp>(95da7)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/95da73a)

#####     [View changes on
GitHub](https://togithub.com/pdm-project/pdm-backend/compare/2.3.0...2.3.1)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MTcuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: erichesse <[email protected]>
erichesse referenced this pull request in robert-koch-institut/mex-model Jul 9, 2024
This PR contains the following updates:

| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [pdm-backend](https://togithub.com/pdm-project/pdm-backend) |
build-system.requires | patch | `==2.3.0` -> `==2.3.1` | `2.3.2` |

---

### Release Notes

<details>
<summary>pdm-project/pdm-backend (pdm-backend)</summary>

###
[`v2.3.1`](https://togithub.com/pdm-project/pdm-backend/releases/tag/2.3.1)

[Compare
Source](https://togithub.com/pdm-project/pdm-backend/compare/2.3.0...2.3.1)

#####    🐞 Bug Fixes

- Handle unexpected hg repo when parse scm version  -  by
[@&#8203;huxuan](https://togithub.com/huxuan) in
[https://github.com/pdm-project/pdm-backend/issues/237](https://togithub.com/pdm-project/pdm-backend/issues/237)
[<samp>(d6fec)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/d6feccf)
- Treat PDM_BUILD_SCM_VERSION empty string as unset  -  by
[@&#8203;ryukinix](https://togithub.com/ryukinix) in
[https://github.com/pdm-project/pdm-backend/issues/238](https://togithub.com/pdm-project/pdm-backend/issues/238)
[<samp>(596f1)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/596f1dc)
- Honor the current working directory when importing pdm_build.py Close
[#&#8203;245](https://togithub.com/pdm-project/pdm-backend/issues/245)
 -  by [@&#8203;frostming](https://togithub.com/frostming) in
[https://github.com/pdm-project/pdm-backend/issues/245](https://togithub.com/pdm-project/pdm-backend/issues/245)
[<samp>(ba98c)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/ba98c85)
- Errors when using the `editables` backend with the `includes` field.
Fixes
[#&#8203;242](https://togithub.com/pdm-project/pdm-backend/issues/242)
 -  by [@&#8203;frostming](https://togithub.com/frostming) in
[https://github.com/pdm-project/pdm-backend/issues/242](https://togithub.com/pdm-project/pdm-backend/issues/242)
[<samp>(59396)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/59396e3)
- Vendor editables  -  by
[@&#8203;frostming](https://togithub.com/frostming)
[<samp>(95da7)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/95da73a)

#####     [View changes on
GitHub](https://togithub.com/pdm-project/pdm-backend/compare/2.3.0...2.3.1)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MTcuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: erichesse <[email protected]>
cutoffthetop referenced this pull request in robert-koch-institut/mex-editor Jul 12, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [pdm-backend](https://togithub.com/pdm-project/pdm-backend) |
build-system.requires | patch | `==2.3.0` -> `==2.3.2` |

---

### Release Notes

<details>
<summary>pdm-project/pdm-backend (pdm-backend)</summary>

###
[`v2.3.2`](https://togithub.com/pdm-project/pdm-backend/releases/tag/2.3.2)

[Compare
Source](https://togithub.com/pdm-project/pdm-backend/compare/2.3.1...2.3.2)

#####    🐞 Bug Fixes

- Detect src layout only if it exists and included by build config  - 
by [@&#8203;frostming](https://togithub.com/frostming)
[<samp>(9466c)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/9466c66)
- Use compatible is_relative_to for Python 3.8  -  by
[@&#8203;frostming](https://togithub.com/frostming)
[<samp>(30c46)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/30c4614)

#####    📝 Documentation

- Update the logo url  -  by
[@&#8203;frostming](https://togithub.com/frostming)
[<samp>(fd5ef)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/fd5eff3)

#####     [View changes on
GitHub](https://togithub.com/pdm-project/pdm-backend/compare/2.3.1...2.3.2)

###
[`v2.3.1`](https://togithub.com/pdm-project/pdm-backend/releases/tag/2.3.1)

[Compare
Source](https://togithub.com/pdm-project/pdm-backend/compare/2.3.0...2.3.1)

#####    🐞 Bug Fixes

- Handle unexpected hg repo when parse scm version  -  by
[@&#8203;huxuan](https://togithub.com/huxuan) in
[https://github.com/pdm-project/pdm-backend/issues/237](https://togithub.com/pdm-project/pdm-backend/issues/237)
[<samp>(d6fec)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/d6feccf)
- Treat PDM_BUILD_SCM_VERSION empty string as unset  -  by
[@&#8203;ryukinix](https://togithub.com/ryukinix) in
[https://github.com/pdm-project/pdm-backend/issues/238](https://togithub.com/pdm-project/pdm-backend/issues/238)
[<samp>(596f1)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/596f1dc)
- Honor the current working directory when importing pdm_build.py Close
[#&#8203;245](https://togithub.com/pdm-project/pdm-backend/issues/245)
 -  by [@&#8203;frostming](https://togithub.com/frostming) in
[https://github.com/pdm-project/pdm-backend/issues/245](https://togithub.com/pdm-project/pdm-backend/issues/245)
[<samp>(ba98c)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/ba98c85)
- Errors when using the `editables` backend with the `includes` field.
Fixes
[#&#8203;242](https://togithub.com/pdm-project/pdm-backend/issues/242)
 -  by [@&#8203;frostming](https://togithub.com/frostming) in
[https://github.com/pdm-project/pdm-backend/issues/242](https://togithub.com/pdm-project/pdm-backend/issues/242)
[<samp>(59396)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/59396e3)
- Vendor editables  -  by
[@&#8203;frostming](https://togithub.com/frostming)
[<samp>(95da7)</samp>](https://togithub.com/pdm-project/pdm-backend/commit/95da73a)

#####     [View changes on
GitHub](https://togithub.com/pdm-project/pdm-backend/compare/2.3.0...2.3.1)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MTcuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyOS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants