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

Errors when using the editables backend with the includes field #242

Closed
xulongwu4 opened this issue May 29, 2024 · 0 comments
Closed

Errors when using the editables backend with the includes field #242

xulongwu4 opened this issue May 29, 2024 · 0 comments

Comments

@xulongwu4
Copy link

I have the following sample project.

$ tree .
.
├── pyproject.toml
└── src
    ├── mypackage1
    │   └── __init__.py
    └── mypackage2
        └── __init__.py

and the content of pyproject.toml is

[project]
name = "test"
version = "0.1.0"
description = "Default template for PDM package"
authors = []
dependencies = []
requires-python = "==3.12.*"

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"

[tool.pdm.build]
package-dir = "src"
includes = ["src/mypackage1", "src/mypackage2"]
editable-backend = "editables"

I only put folders inside the package-dir into includes .

However, when I ran pdm install, which would perform an editable installation of the project using editables as the backend, I got the following error message:

$ pdm install
WARNING: Lockfile does not exist
Updating the lock file...
🔒 Lock successful
Changes are written to pdm.lock.
All packages are synced to date, nothing to do.
Installing the project as an editable package...
  ✖ Install test 0.1.0 failed

See /home/oulongwu/.local/state/pdm/log/pdm-install-1abiz06e.log for detailed debug log.
[BuildError]: Build backend raised error: Showing the last 10 lines of the build output:
  File "/tmp/pdm-build-env-ik5scq67-shared/lib/python3.12/site-packages/pdm/backend/base.py", line 149, in call_hook
    getattr(hook, hook_name)(context, *args, **kwargs)
  File "/tmp/pdm-build-env-ik5scq67-shared/lib/python3.12/site-packages/pdm/backend/editable.py", line 22, in pdm_build_initialize
    editables = self._prepare_editable(context)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/tmp/pdm-build-env-ik5scq67-shared/lib/python3.12/site-packages/pdm/backend/editable.py", line 61, in _prepare_editable
    editables.map(package, os.path.join(package_dir, package))
  File "/tmp/pdm-build-env-34ob9dw_-overlay/lib/python3.12/site-packages/editables/__init__.py", line 60, in map
    raise EditableException(f"{target} is not a valid Python package or module")
editables.EditableException: src/src/mypackage1 is not a valid Python package or module
WARNING: Add '-v' to see the detailed traceback

The error happens when pdm-backend thought we are referring to src/src/mypackage1 in the call to editable.map. This is the result of calling os.path.join(package_dir, package) with package_dir set to src and package set to src/mypackage1.

cutoffthetop referenced this issue in robert-koch-institut/mex-backend Jul 1, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [pdm-backend](https://github.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://github.com/pdm-project/pdm-backend/releases/tag/2.3.1)

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

#####     [View changes on
GitHub](https://github.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://github.com/renovatebot/renovate).

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

| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [pdm-backend](https://github.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://github.com/pdm-project/pdm-backend/releases/tag/2.3.1)

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

#####     [View changes on
GitHub](https://github.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://github.com/renovatebot/renovate).

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

| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [pdm-backend](https://github.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://github.com/pdm-project/pdm-backend/releases/tag/2.3.1)

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

#####     [View changes on
GitHub](https://github.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://github.com/renovatebot/renovate).

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

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

| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [pdm-backend](https://github.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://github.com/pdm-project/pdm-backend/releases/tag/2.3.1)

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

#####     [View changes on
GitHub](https://github.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://github.com/renovatebot/renovate).

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

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

| Package | Type | Update | Change |
|---|---|---|---|
| [pdm-backend](https://github.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://github.com/pdm-project/pdm-backend/releases/tag/2.3.2)

[Compare
Source](https://github.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://github.com/frostming)
[<samp>(9466c)</samp>](https://github.com/pdm-project/pdm-backend/commit/9466c66)
- Use compatible is_relative_to for Python 3.8  -  by
[@&#8203;frostming](https://github.com/frostming)
[<samp>(30c46)</samp>](https://github.com/pdm-project/pdm-backend/commit/30c4614)

#####    📝 Documentation

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

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

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

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

#####     [View changes on
GitHub](https://github.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://github.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

No branches or pull requests

1 participant