summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-3/+6
|
* Fixed #33044 -- Reallowed editable install into user site directory.Carlton Gibson2021-09-011-0/+5
| | | Regression in f8f35e8c530aaf440fa8160327461460d79f6db2.
* Removed obsolete version check in setup.py.Nick Pope2021-04-151-29/+0
| | | | | | | | | | | | | | | | | | This was originally added to ensure that Django 2.0+ could not be installed on Python 2.7 or earlier, in particular where the version of pip or setuptools being used did not support the python_requires argument. Unfortunately, as REQUIRED_PYTHON has been bumped, this check no longer satisfies its original purpose and could be misleading, e.g. if REQUIRED_PYTHON is 3.8 and CURRENT_PYTHON is 3.7 it would request that Django < 2 is installed, but there are later versions of Django that support Python 3.7. By the time Django 4 is released in December 2021, the python_requires argument will have been supported for over five years, and Python 2 will have been EOL for nearly two years, so we can remove this check. See https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
* Fixed #32355 -- Dropped support for Python 3.6 and 3.7Mariusz Felisiak2021-02-101-1/+1
|
* Fixed #30948 -- Changed packaging to use declarative config in setup.cfg.Jon Dufresne2019-11-081-59/+2
| | | | Co-authored-by: Nick Pope <nick.pope@flightdataservices.com>
* Clarified that license is BSD 3-Clause in package metadata.Nick Pope2019-11-071-1/+1
|
* Refs #30183 -- Doc'd dropping support for sqlparse < 0.2.2.Stephen Rauch2019-11-061-1/+1
| | | | | | Support for sqlparse < 0.2.2 was broken in 782d85b6dfa191e67c0f1d572641d8236c79174c because is_whitespace property was added in sqlparse 0.2.2.
* Removed unnecessary EXCLUDE_FROM_PACKAGES from setup.py.Jon Dufresne2019-11-041-6/+1
| | | | | | Unnecessary since abc0777b63057e2ff97eee2ff184356051e14c47 where the extension was changed to not be ".py". Also, django.bin doesn't have a __init__.py file, so it is not a package and therefore it's not excluded by this argument.
* Refs #29926 -- Added Python 3.8 to classifiers and tox.ini.Bastien Vallet2019-10-241-0/+1
|
* Fixed #30451 -- Added ASGI handler and coroutine-safety.Andrew Godwin2019-06-201-1/+1
| | | | | This adds an ASGI handler, asgi.py file for the default project layout, a few async utilities and adds async-safety to many parts of Django.
* Fixed #30116 -- Dropped support for Python 3.5.Tim Graham2019-01-301-2/+1
|
* Fixed #29934 -- Added sqlparse as a require dependency.Tim Graham2018-11-091-1/+1
|
* Refs #28814 -- Documented Python 3.7 compatibility.Asif Saifuddin Auvi2018-06-281-0/+1
|
* Fixed #29410 -- Added project_urls to setup.py.Philip James2018-05-161-0/+6
|
* Fixed #29373 -- Added long_description in setup.py.Carlton Gibson2018-05-031-0/+6
|
* Fixed #28878 -- Added python_requires in setup.py and a warning for older ↵Zac-HD2017-12-221-0/+30
| | | | pips that don't recognize it.
* Added "Python 3 Only" trove classifier.Nick Pope2017-12-061-0/+1
|
* Fixed #27857 -- Dropped support for Python 3.4.Tim Graham2017-09-251-1/+0
|
* Refs #23919 -- Removed misc Python 2/3 references.Tim Graham2017-01-251-2/+0
|
* Refs #27025 -- Documented Python 3.6 compatibility for Django 1.11.Tim Graham2016-12-271-0/+1
|
* Fixed #27327 -- Simplified time zone handling by requiring pytz.Tim Graham2016-10-271-0/+1
|
* Used HTTPS link to djangoproject.com in setup.py.Adam Chainz2016-09-221-1/+1
|
* Refs #26033 -- Added password hasher support for Argon2 v1.3.Bas Westerbaan2016-04-251-1/+1
| | | | | | | | | | The previous version of Argon2 uses encoded hashes of the form: $argon2d$m=8,t=1,p=1$<salt>$<data> The new version of Argon2 adds its version into the hash: $argon2d$v=19$m=8,t=1,p=1$<salt>$<data> This lets Django handle both version properly.
* Fixed #26033 -- Added Argon2 password hasher.Bas Westerbaan2016-03-081-0/+1
|
* Corrected trove classifiers for Python version support.Tim Graham2015-08-171-1/+1
|
* Updated trove classifier to Pre-Alpha.Tim Graham2015-02-251-1/+1
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+2
|
* Removed compatibility with Python 3.2.Tim Graham2015-01-171-1/+0
|
* Include an 'extra_requires' for bcryptAlex Gaynor2014-04-171-0/+3
|
* Added Python 3.4 to classifiers in setup.py.Berker Peksag2014-03-301-0/+1
|
* Fixed #21827 -- Install django-admin and django-admin.pyFlorian Apolloner2014-01-211-1/+2
| | | | | We need to figure out how to deprecate django-admin.py, but for now this should do the trick.
* Changed django-admin back to django-admin.py. Refs #21827Florian Apolloner2014-01-211-1/+1
|
* Changed setup.py to use find_packages.Florian Apolloner2013-12-311-51/+3
|
* Switched setup.py to setuptools.Florian Apolloner2013-12-271-2/+6
|
* Bumped minimum Python version requirement to 2.7 in Django 1.7.Aymeric Augustin2013-07-011-1/+0
|
* Fixed #20615 -- Added trove classifiers for major Python versions.Aymeric Augustin2013-06-181-0/+2
|
* Bumped verion numbers for 1.6a1.Jacob Kaplan-Moss2013-06-061-1/+1
|
* Fixed #19252 -- Added support for wheel packages.Florian Apolloner2013-05-011-51/+45
| | | | Signed-off-by: Jannis Leidel <jannis@leidel.info>
* Remove download_url from setup.pyDonald Stufft2013-04-041-1/+0
| | | | | | | | * Prevents issues with moving download locations in the future, see https://www.djangoproject.com/m/bad-installer.txt * Removes a location that release managers need to update with a new version * Very little use when files are hosted on PyPI (as Django's are)
* Adjusted download_url in setup.pyFlorian Apolloner2013-04-031-1/+1
|
* Fixed setup.py overlaid-install warning.Carl Meyer2013-03-291-3/+6
| | | | | | | Before this change, if you had a global Django installation in /usr/local/, you might get a spurious warning when installing Django within a virtualenv. Thanks epicserve for the report and debugging help.
* Added Python 3.2/3.3 trove classifiers in setup.pyClaude Paroz2013-02-261-0/+2
|
* Sorry, accidental commit, Thanks claudep for catching it!Honza Kral2013-02-241-1/+1
|
* Fixed #18491 -- deleting a proxy doesn't show warning about cascade deletesHonza Kral2013-02-231-1/+1
|
* Fix filtering during collection of paths in setup.pyRamiro Morales2013-02-141-3/+1
| | | | Thanks Marek Brzóska for the report.
* Added 'license' value to the setup.py fixes #19430Pablo Recio2012-12-141-0/+1
|
* Ensure we ignore __pycache__ PEP 3174 dirs in a few more places.Ramiro Morales2012-10-061-2/+3
|
* Fixed #18115 - added warning about overlaid install.Carl Meyer2012-05-211-0/+36
| | | | | | | | | | Setup.py now warns if it detects that Django is being installed over top of a previous installation that was never removed. This should only happen when installing with ``python setup.py install``, as pip automatically uninstalls before installing a new version and easy_install installs as an egg directory. Also generally updated the installation doc.
* Fixed #17965 -- Definitely dropped support for Python 2.5. Thanks jonash for ↵Claude Paroz2012-03-311-1/+0
| | | | | | the initial patch and Aymeric Augustin for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17834 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Bump trunk to 1.4.1.4James Bennett2012-03-231-2/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17799 bcc190cf-cafb-0310-a4f2-bffc1f526a37