Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 862 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (23 loc) · 862 Bytes

Dask is a community maintained project. We welcome contributions in the form of bug reports, documentation, code, design proposals, and more.

For general information on how to contribute see https://docs.dask.org/en/latest/develop.html.

To develop adlfs it best to work in an virtual environment. You can create a virtual environment using conda and install the development dependencies as follows:

$ conda create -n adlfs-dev python=3.8
$ conda activate adlfs-dev
$ pip install -r requirements/latest.txt

You can run tests from the main directory as follows:

$ py.test adlfs/tests

Release

# Update CHANGELOG.md
# Create a tag. Should start with v
git commit --allow-empty -m 'RLS: <tag>'
git tag -a -m 'RLS: <tag>' <tag>
git push upstream main --follow-tags
python setup.py sdist bdist_wheel
twine upload dist/*