Install and test
pipx:
pipx install --pip-args=--pre pdm
install script:
curl -sSL https://raw.githubusercontent.com/pdm-project/pdm/main/install-pdm.py | python3 - --prerelease
# Or Windows powershell:
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/pdm-project/pdm/main/install-pdm.py -UseBasicParsing).Content | python - --prerelease
setup-pdm action:
- uses: pdm-project/setup-pdm@main
with:
prerelease: true
Breaking Changes
- Store file URLs instead of filenames in the lock file, bump lock version to
4.0
. #1203
Features & Improvements
- Read site-wide configuration, which serves as the lowest-priority layer.
This layer will be read-only in the CLI. #1200 - Get package links from the urls stored in the lock file. #1204