-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from panatale1/jazzband-checklist
Jazzband Checklist
- Loading branch information
Showing
23 changed files
with
561 additions
and
446 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
exclude = .git, .venv, __pycache__, migrations, tests | ||
ignore = E203, E501, W605, W504, E265, W503 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Python package | ||
|
||
on: | ||
push: | ||
branches: '**' #[ $default-branch ] | ||
pull_request: | ||
branches: '**' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
# matrix: | ||
# python-version: ["3.3.7", "3.4.10", "3.5.10"] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
# - name: Set up Python ${{ matrix.python-version }} | ||
# uses: actions/setup-python@v3 | ||
# with: | ||
# python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install flake8 tox | ||
- name: Run tests and flake8 with tox | ||
run: | | ||
tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 | ||
hooks: | ||
- id: debug-statements | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
- repo: https://github.com/psf/black | ||
rev: 24.8.0 | ||
hooks: | ||
- id: black | ||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 7.1.1 | ||
hooks: | ||
- id: flake8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.. image:: https://jazzband.co/static/img/jazzband.svg | ||
:target: https://jazzband.co/ | ||
:alt: Jazzband | ||
|
||
This is a `Jazzband <https://jazzband.co>`_ project. By contributing, you agree to abide by the `Contributor Code of Conduct <https://jazzband.co/about/conduct>`_ and follow the `guidelines <https://jazzband.co/about/guidelines>`_. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ django-superform | |
|
||
**Less sucking formsets.** | ||
|
||
|build| |package| |gitter| | ||
|build| |package| |jazzband| | ||
|
||
Documentation_ | Changelog_ | Requirements_ | Installation_ | ||
|
||
|
@@ -126,7 +126,7 @@ Development | |
|
||
- Clone django-superform:: | ||
|
||
git clone [email protected]:gregmuellegger/django-superform.git | ||
git clone [email protected]:jazzband/django-superform.git | ||
|
||
- ``cd`` into the repository:: | ||
|
||
|
@@ -157,13 +157,10 @@ Full documentation is available on Read the Docs: https://django-superform.readt | |
|
||
.. |build| image:: https://travis-ci.org/gregmuellegger/django-superform.svg?branch=master | ||
:alt: Build Status | ||
:scale: 100% | ||
:target: https://travis-ci.org/gregmuellegger/django-superform | ||
.. |package| image:: https://badge.fury.io/py/django-superform.svg | ||
:alt: Package Version | ||
:scale: 100% | ||
:target: http://badge.fury.io/py/django-superform | ||
.. |gitter| image:: https://badges.gitter.im/JoinChat.svg | ||
:alt: Gitter Chat, discuss django-superform with others | ||
:scale: 100% | ||
:target: https://gitter.im/gregmuellegger/django-superform | ||
.. |jazzband| image:: https://jazzband.co/static/img/badge.svg | ||
:target: https://jazzband.co | ||
:alt: Jazzband |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.