Replies: 1 comment 3 replies
|
I can't reproduce, can you provide an example repo? Tested using this pyproject.toml: [project]
name = "test_pdm"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "", email = "kukumav@example.com"},
]
dependencies = ["requests"]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.dev-dependencies]
doc = ["mkdocs"]
test = ["pytest"] |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
After I have updated our Jenkins pipeline to use PDM 2.18.1 we started to get this error:
The pdm.lock was created with the same command on the laptop and pushed to git.
What am I missing here ?
All reactions