-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/4.1.x: Bump version to 4.1.0 Fix python 2 compatibility Ensure Python 2.7 compatibility Import force/smart_str instead of force/smart_text Run coverage-report (combined coverage) on Python 3.10 Add myself to the list of contributors Add more Python versions to the classifiers Remove PIL from the installation instructions Fix spelling / rst errors Use GitHub actions workflow badge Minor improvements to the tests Add coverage reporting Add Python 3.10 to the test matrix Switch from django-nose to pytest-django Remove Python 3.10 from the test matrix because nose doesn't work Upgrade pip before installing other dependencies Django master branch has been renamed to main at some point Use tox-gh-actions Workaround SuspiciousFileOperation Remove nose-progressive, it doesn't seem to work with recent Python versions Only test on currently supported versions of Python and Django Switch to GitHub Actions chore: Set django-dramatiq min version chore: Add 'async_dramatiq' extra, django-dramatiq dependency feat: Add Dramatiq backend Accept cachefile_storage that is callable Add support of celery 5.* Use gettext_lazy in Django 2.0+ (ugettext_lazy is deprecated) Fix deprecation warning regarding invalid escape sequences. docs: Fix simple typo, assigment -> assignment fix broken links in documentation (#319) Pass features to BeautifulSoup constructor Do not check for existence if name is None Python 3.6 and Django 2.1 Fix pickle serialization for ImageCacheFile Enhance condition in _get_size (#463) Test against Django 2.0
- Loading branch information
Showing
35 changed files
with
298 additions
and
366 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,9 @@ | ||
[run] | ||
branch = true | ||
parallel = true | ||
|
||
[report] | ||
show_missing = true | ||
skip_empty = true | ||
skip_covered = true | ||
precision = 2 |
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,31 @@ | ||
name: Python CI | ||
|
||
on: | ||
push: | ||
branches: [ develop ] | ||
pull_request: | ||
branches: [ develop ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10'] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install tox tox-gh-actions | ||
- name: Run tests | ||
run: tox |
This file was deleted.
Oops, something went wrong.
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
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
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
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
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.