First off, thanks for taking the time to contribute! Contributions include but are not restricted to:
- Reporting bugs
- Contributing to code
- Writing tests
- Writing documentation
The following is a set of guidelines for contributing.
This section is for beginners to OSS. If you are an experienced OSS developer, you can skip this section.
-
First, fork this project to your own namespace using the fork button at the top right of the repository page.
-
Clone the upstream repository to local:
git clone https://github.com/pdm-project/pdm.git # Or if you prefer SSH clone: git clone git@github.com:pdm-project/pdm.git -
Add the fork as a new remote:
git remote add fork https://github.com/yourname/pdm.git git fetch fork
Where
forkis the remote name of the fork repository.
ProTips:
-
Don't modify code on the main branch, the main branch should always keep track of origin/main.
To update main branch to date:
git pull origin main # In rare cases that your local main branch diverges from the remote main: git fetch origin && git reset --hard main
-
Create a new branch based on the up-to-date main branch for new patches.
-
Create a Pull Request from that patch branch.
We recommend working in a virtual environment.
Feel free to create a virtual environment with either the venv module or the virtualenv tool.
For example:
python -m venv .venv
. .venv/bin/activate # linux
.venv/Scripts/activate # windowsMake sure your pip is newer than 21.3 to install PDM in develop/editable mode:
python -m pip install -U "pip>=21.3"
python -m pip install -e .Make sure PDM uses the virtual environment you just created:
pdm config -l python.use_venv true
pdm config -l venv.in_project trueInstall PDM development dependencies:
pdm installNow, all dependencies are installed into the Python environment you chose, which will be used for development after this point.
pdm run testFaster test using pytest-xdist:
pdm run test -n autoThe test suite is still simple and needs expansion! Please help write more test cases.
!!! note
You can also run your test suite against all supported Python version using tox with the tox-pdm plugin.
You can either run it by yourself with:
```shell
tox
```
Or from `pdm` with:
```shell
pdm run tox
```
PDM uses pre-commit hooks for linting. You need to install prek to run the hooks.
Please refer to the prek documentation and install it with your preferred method.
Then you can install the hooks by running:
prek installYou can now lint the code with:
pdm run lintPDM uses ruff for code style and sorting import statements. If you are not following them,
the CI will fail and your Pull Request will not be merged.
When you make changes such as fixing a bug or adding a feature, you must add a news fragment describing your change.
News fragments are placed in the news/ directory, and should be named according to this pattern: <issue_num>.<issue_type>.md (e.g., 566.bugfix.md).
feature: Features and improvementsbugfix: Bug fixesrefactor: Code restructuresdoc: Added or improved documentationdep: Changes to dependenciesremoval: Removals or deprecations in the APImisc: Miscellaneous changes that don't fit any of the other categories
The contents of the file should be a single sentence in the imperative
mood that describes your changes. (e.g. Deduplicate the plugins list. )
See entries in the Change Log for more examples.
PDM docs development requires a few additional dependencies. Install them as:
sudo apt install libffi-dev # Or equivalent with the package manager of your choiceNow, whenever you make some changes to the docs/ and you want to preview the build result, simply do:
pdm run docOnce all changes are done and ready to release, you can preview the changelog contents by running:
pdm run release --dry-runMake sure the next version and the changelog are as expected in the output.
Then cut a release on the main branch:
pdm run releaseGitHub action will create the release and upload the distributions to PyPI.
Read more options about version bumping by pdm run release --help.