Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-11-09Remove letsencrypt[-apache|-nginx] (#3769)Nick Fong
2016-05-27Bump version to 0.8.0Brad Warren
2016-05-27Release 0.7.0v0.7.0Brad Warren
2016-05-12Bump version to 0.7.0Brad Warren
2016-05-12Release 0.6.0v0.6.0Brad Warren
2016-04-15letsencrypt-nginx shimBrad Warren
2016-04-14s/letsencrypt/certbot letsencrypt-nginx testsBrad Warren
2016-04-06Bump version to 0.6.0Brad Warren
2016-04-06Release 0.5.0v0.5.0Brad Warren
2016-03-04Require setuptools>=1.0 in all packages that use the cryptography lib.Erik Rose
When pip-installing any of these packages, pip hit our permissive, any-version "setuptools" dependency first and then ignored all subsequent, more constrained ones, like cryptography's "setuptools>=1.0". See https://github.com/pypa/pip/issues/988. It thus, on a box with setuptools 0.9.8, stuck with that version. Then, at runtime, letsencrypt crashed because pkg_resources couldn't satisfy cryptography's setuptools>=1.0 requirement. This change lets us pip-install our packages and have it work. We'll need to make sure our direct requirements (all of them) satisfy the more constrained requirements of our dependencies. Yes, it is disgusting.
2016-02-11Bump version to 0.5.0Peter Eckersley
2016-02-11Release 0.4.0v0.4.0Peter Eckersley
2016-01-28Bump version to 0.4.0Peter Eckersley
2016-01-28Release 0.3.0v0.3.0Peter Eckersley
2016-01-20Merge pull request #2199 from letsencrypt/0.2.0bmw
Include 0.2.0 release in master's history, and bump version
2016-01-16Bump version to 0.2.1.dev0Peter Eckersley
2016-01-15Release 0.2.0v0.2.0Brad Warren
2016-01-12Master master into letsencrypt-auto-release so Travis will build it.Erik Rose
2016-01-12Remove mock as an install requirement.Erik Rose
The motivation is to free us of a reliance on a rather modern version of setuptools, which caused le-auto failures for people on Wheezy and other older distros. (The alternative would have been to forcibly upgrade setuptools as the old le-auto did, but less is more.) Mock is used only in tests, so we move it to tests_require. It will still be installed automatically when setup.py test is run. Give all packages a test_suite so this works. The "testing" extra remains for optional packages not required for the nose tests but used in tox. However, the extra is much less useful now and is a candidate for deletion. We could roll the list of packages therein into the tox config so as not to favor any particular package. Remove tests_require=install_requires, which I don't think does anything useful, since install requirements are implicitly installed when running setup.py test. Fix tests to pass with mock removed. We had to stop them pulling down LE from PyPI, since the current version there (0.1.1) requires mock and explodes when `letsencrypt` is run.
2016-01-07Add comment about dependency versionBrad Warren
2015-12-03Unbreak masterJakub Warmuz
2015-12-03Release 0.1.0v0.1.0Peter Eckersley
2015-10-31Add Python 2.6 setup.py classifiers.Jakub Warmuz
2015-10-22docs_extra for subpkgsJakub Warmuz
2015-10-11Revert "Release 0.0.0.dev20151008"Jakub Warmuz
This reverts commit 9e1477faa48148ad5b2c3664375a3520d589eb94.
2015-10-08Release 0.0.0.dev20151008v0.0.0.dev20151008Jakub Warmuz
2015-10-05Merge remote-tracking branch 'github/letsencrypt/master' into mock-2.6Jakub Warmuz
2015-10-04Merge remote-tracking branch 'github/letsencrypt/master' into mock-2.6Jakub Warmuz
2015-09-27Fix include_package_data.Jakub Warmuz
2015-09-27Development Status :: 3 - AlphaJakub Warmuz
2015-09-27Add general classifiers to all setup.py scripts.Jakub Warmuz
2015-09-27Unify setup.py: description/url/author/author_email.Jakub Warmuz
2015-09-27Add licences to all subpackages.Jakub Warmuz
2015-09-27Sync version strings to 0.1.0.dev0, pin same repo deps.Jakub Warmuz
2015-09-26Explicit dependency on setuptools (pkg_resources).Jakub Warmuz
2015-09-11Merge remote-tracking branch 'github/letsencrypt/master' into lintJakub Warmuz
2015-09-06pep8 letsencrypt-nginxJakub Warmuz
2015-09-01setup.py: update/fix deps.Jakub Warmuz
2015-08-28Revert "Revert PR #708."Jakub Warmuz
This reverts commit 70e311b43f6910c070dce3bab3396db495636d00.
2015-08-27Revert PR #708.Jacob Hoffman-Andrews
https://github.com/letsencrypt/letsencrypt/pull/708 broke the Boulder CI build because Travis runs Ubuntu 12.04, which has an older setuptools. See https://github.com/letsencrypt/boulder/issues/681.
2015-08-22mock<1.1.0 only for py2.6.Jakub Warmuz
2015-07-29include_package_data in apache and nginx pluginsJakub Warmuz
ref https://github.com/letsencrypt/letsencrypt/issues/625
2015-07-11mv letsencrypt_* letsencrypt-*.Jakub Warmuz