summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add Django 4.2a1 Support (#90)HEADdevelopHunter Chambers2023-01-182-1/+4
|
* Updated codecov GHA.Carlton Gibson2023-01-061-1/+1
|
* Updated supported versions and CI matrix.Carlton Gibson2023-01-064-31/+34
|
* Update version number and release notes for 1.0.5 release.v1.0.5Carlton Gibson2021-09-242-1/+7
|
* Added Trove classifier for Django 4.0.Carlton Gibson2021-09-231-0/+1
|
* Added Django 4.0 to test matrix.Carlton Gibson2021-09-231-2/+3
|
* Added PY39 testing to tox. (#82)Carlton Gibson2021-08-231-3/+3
|
* Updated Trove classifiers. (#81)Carlton Gibson2021-08-221-5/+3
|
* Added python_requires. Carlton Gibson2021-08-221-0/+1
| | | Closes #70.
* Removed unneed setup.cfgCarlton Gibson2021-08-221-3/+0
| | | | wheel is PY3 only. Closes #71.
* Recursively excluding __pycache__ (#73)David Runge2021-08-221-0/+1
| | | | | | | | MANIFEST.in: Recursively exclude __pycache__ directories. They break reproducibility and are test/build artifacts of the build/test/release machine, which should never end up in a sdist. Closes #72
* Moved CI to GitHub Actions (#78)Carlton Gibson2021-08-223-101/+38
| | | | | | | | | | | * Added draft for workflow file. * Updated tox to current supported Django versions. * Updated workflow to run tests with tox. * Adjusted tox config. * Added coverage install. * Use official codecov action. * Drop deprecated .py from test command. * Drop testing PY39 for the moment. * Stopped testing with Travis.
* Document compatibility with Django "diffsettings" command. (#69)Pascal Chambon2020-04-111-0/+4
|
* Specify package is Python 3 only (#67)Chris Lasher2020-04-071-1/+1
| | | | | The presence of the generic `Programming Language :: Python` classifier appears to cause pip in Python 2.7 to still install new releases of this package, even though support for Python 2 was removed from this package in the current release. Removing the generic "Python" classifier should prevent this issue, by reading between the lines of [the Python Packaging tutorial](https://packaging.python.org/tutorials/packaging-projects/#creating-setup-py) ("In this case, the package is only compatible with Python 3"). Just to be certain, this also adds the `Programming Language :: Python :: 3 :: Only` classifier.
* travis: test on Ubuntu 18 (#61)nikolas2020-03-311-1/+1
|
* Set release date and bump version for 1.0.4.v1.0.4vCarlton Gibson2020-03-312-3/+3
|
* MANIFEST.in: Adding tests. (#55)David Runge2020-01-211-1/+2
|
* Test python 3.8 and Django 3.0 (#57)Hameed Gifford2020-01-218-49/+41
| | | Aligns the doc specs to match tested versions
* Updated Django support: for Django 2.2 (#47)Niouby2019-07-114-10/+41
| | | | | | | | * Add template and middleware settings in test_settings * update python/django support: add django 2.2 * fix tests, add SessionMiddleware
* Bump version and update changelog for v1.0.3 release.1.0.3Carlton Gibson2019-03-032-3/+5
|
* Add package classifiers for Python 3.7 support (#46)Aleksi Häkli2019-02-251-0/+1
| | | Signed-off-by: Aleksi Häkli <aleksi.hakli@iki.fi>
* Migrate from django.utils.six to six (#44)Aleksi Häkli2019-02-252-2/+3
| | | | | Django #27753 has dropped six support Signed-off-by: Aleksi Häkli <aleksi.hakli@iki.fi>
* Drop Python 3.5 support for Django master (#45)Aleksi Häkli2019-02-242-4/+1
| | | | | | The new Django master and version 2.2 are dropping support for Python 3.5 and thus having the old versions in the test matrix is redundant. Signed-off-by: Aleksi Häkli <aleksi.hakli@iki.fi>
* Follow django Python support map, add tox/travis targets for stable django ↵joehybird2018-12-174-42/+50
| | | | | | | | 2.0 and 2.1 (#43) * Follow django Python support map, add tox/travis targets for stable django 2.0 and 2.1 * Drop django 1.8 to 1.10. Add python 3.7
* add `django` as a requirement to `setup.py` (#40)Naman Bharadwaj2018-02-011-1/+1
|
* Add syntax highlighting (#39)lcd12322018-01-262-7/+20
| | | | | | | | | | * Add syntax highlighting * Fix E722 * Fix coverage * Skip checking ImportError
* Updates README.rst with svg badge (#38)Nikita Sobolev2017-10-031-1/+1
|
* Merge pull request #37 from hsmett/developCarlton Gibson2017-09-114-32/+90
|\ | | | | Follow django Python support map, add test for stable django 1.10 and…
| * Follow django Python support map, add test for stable django 1.10 and 1.11Hugo Smett2017-09-114-32/+90
|/
* Merge pull request #36 from twz915/patch-1Carlton Gibson2017-04-051-1/+1
|\ | | | | sorted works well on set
| * sorted works well on setWeizhongTu2017-04-051-1/+1
|/ | | sorted works well on set, so convert a set to list is not necessary and not efficient.
* Merge pull request #35 from adamchainz/readthedocs.ioCarlton Gibson2016-05-312-4/+4
|\ | | | | Convert readthedocs link for their .org -> .io migration for hosted projects
| * Convert readthedocs link for their .org -> .io migration for hosted projectsAdam Chainz2016-05-312-4/+4
|/ | | | | | | | As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/) ‘Securing subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard. Test Plan: Manually visited all the links I’ve modified.
* Merge pull request #34 from carltongibson/fixesCarlton Gibson2016-04-196-29/+30
|\ | | | | Pre-release changes
| * Bump VersionCarlton Gibson2016-04-191-1/+1
| |
| * Update ChangelogCarlton Gibson2016-04-191-0/+9
| |
| * Remove py35-dj19 from allow_failuresCarlton Gibson2016-03-201-1/+0
| |
| * Add tests checking `override_settings` compat.Carlton Gibson2016-03-191-0/+13
| | | | | | | | Ref #29 and #30
| * Remove Python < 2.6 `__members__` supportCarlton Gibson2016-03-192-9/+0
| |
| * Get Python 3.5 tests working on TravisCarlton Gibson2016-03-191-0/+2
| |
| * Drop EOL Django versions from TravisCarlton Gibson2016-03-192-18/+5
|/
* Merge pull request #32 from carltongibson/fix-pip8-py32-build-issueCarlton Gibson2016-02-031-1/+3
|\ | | | | Fix Travis build for Py32
| * Fix Travis build for Py32Carlton Gibson2016-02-031-1/+3
|/
* Merge pull request #31 from scop/travisCarlton Gibson2016-02-032-4/+10
|\ | | | | Update Django 1.9 and master test configs
| * Update Django 1.9 and master test configsVille Skyttä2015-12-042-4/+10
|/
* Merge pull request #28 from wtayyeb/patch-1Carlton Gibson2015-11-013-4/+4
|\ | | | | use django.utils.six instead of standalone six
| * force using coverage 3.7.1 with python3.2Tayyeb2015-11-011-1/+2
| |
| * remove dependency to sixwtayyeb2015-10-221-1/+1
| |
| * use django.utils.sixwtayyeb2015-10-221-2/+1
|/ | | this app is working in django, so no need to add additional dependency when it exist. using django.utils.six is better.
* Merge pull request #26 from treyhunner/add-codecovCarlton Gibson2015-09-162-0/+7
|\ | | | | Measure code coverage with Codecov