Skip to content
Snippets Groups Projects
Select Git revision
  • ee5e6ea8021fdef5a0a2563d73a477bd50af53bf
  • master default protected
  • renovate/django-5.x
  • renovate/flake8-7.x
  • renovate/pytest-8.x
  • renovate/pytest-cov-6.x
  • renovate/pytest-runner-6.x
  • renovate/pytest-django-4.x
  • renovate/graphene-django-3.x
  • renovate/mock-5.x
  • renovate/black-25.x
  • renovate/pytest-django-3.x
  • renovate/pytest-cov-2.x
  • renovate/graphene-3.x
  • renovate/flake8-3.x
  • renovate/django-3.x
  • renovate/pytest-4.x
  • 0.9.2
18 results

CONTRIBUTING.md

Blame
  • user avatar
    Tomás Fox authored
    977fde4f
    History
    After you've reviewed these contribution guidelines, you'll be all set to contribute to this project.
    CONTRIBUTING.md 344 B

    Contributing

    Environment

    The system must have installed:

    • python 3
    • virtualenv
    virtualenv -p python3 venv
    . venv/bin/activate
    pip install -r dev-requirements.txt
    # run tests:
    python setup.py test

    Publish

    # update version in setup.py
    # then:
    rm -r dist
    python setup.py sdist bdist_wheel
    twine upload dist/*