You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# build stage
FROM python:3.10-slim
# install PDM
RUN pip install -U pip setuptools wheel
RUN pip install pdm
# copy files
COPY pyproject.toml README.md /project/
# install dependencies and project into the local packages directory
WORKDIR /project
RUN pdm config install.cache true && pdm install
Actual behavior
the rlax package has some packaging issues that includes a requirements and examples folder which was not supposed to be packaged. Also it is declared as a namespace package. I have reached out to the project maintainer for a fix. Still, I don't think PDM should fail to install the package.
Expected behavior
I expect installing rlax to succeed.
Environment Information
# Paste the output of `pdm info && pdm info --env` below:
PDM version:
2.10.0
Python Interpreter:
/home/yicheng/projects/pdm-example/.venv/bin/python (3.10)
Project Root:
/home/yicheng/projects/pdm-example
Local Packages:
{
"implementation_name": "cpython",
"implementation_version": "3.10.13",
"os_name": "posix",
"platform_machine": "x86_64",
"platform_release": "5.15.0-87-generic",
"platform_system": "Linux",
"platform_version": "#97~20.04.1-Ubuntu SMP Thu Oct 5 08:25:28 UTC 2023",
"python_full_version": "3.10.13",
"platform_python_implementation": "CPython",
"python_version": "3.10",
"sys_platform": "linux"
}
The text was updated successfully, but these errors were encountered:
Make sure you run commands with
-v
flag before pasting the output.The output is very lengthy, but the interesting bit is
Steps to reproduce
Here is my pyproject.toml.
You can use a Dockerfile to reproduce this.
Actual behavior
the rlax package has some packaging issues that includes a requirements and examples folder which was not supposed to be packaged. Also it is declared as a namespace package. I have reached out to the project maintainer for a fix. Still, I don't think PDM should fail to install the package.
Expected behavior
I expect installing rlax to succeed.
Environment Information
The text was updated successfully, but these errors were encountered: