summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump version: 34.3.1 → 34.3.2v34.3.2Jason R. Coombs2017-03-112-2/+2
|
* Update changelog. Ref #993.Jason R. Coombs2017-03-111-0/+7
|
* Extract variables to remove hanging indents.Jason R. Coombs2017-03-111-11/+10
|
* Merge pull request #993 from fschulze/fix-docs-upload-content-typeJason R. Coombs2017-03-112-1/+3
|\ | | | | Fix documentation upload by fixing content_type in _build_multipart on Python 3.x.
| * Fix documentation upload by fixing content_type in _build_multipart on ↵Florian Schulze2017-03-112-1/+3
|/ | | | Python 3.x.
* Bump version: 34.3.0 → 34.3.1v34.3.1Jason R. Coombs2017-03-022-2/+2
|
* Update changelogJason R. Coombs2017-03-021-0/+3
|
* Merge pull request #988 from estyrke/patch-1Jason R. Coombs2017-03-021-1/+1
|\ | | | | Fix for auto_chmod behavior
| * Fix for auto_chmod behaviorEmil Styrke2017-02-271-1/+1
|/ | | Apparently, in (at least) python 3.5.2, the function that is called on Windows to remove files is os.unlink and not os.remove. This results in permission errors when trying to clean up after easy_install has been used to install a package from a Git repository.
* Add a test capturing new proposed expectation that Setuptools' build ↵Jason R. Coombs2017-02-261-0/+50
| | | | dependencies should not require setuptools to build in order to avoid inevitable conflicts when bootstrapping from source. Packaging fails this test. Ref #980
* Merge pull request #983 from scop/py36escseqJason R. Coombs2017-02-248-12/+18
|\ | | | | Python 3.6 invalid escape sequence deprecation fixes
| * Python 3.6 invalid escape sequence deprecation fixesVille Skyttä2017-02-248-12/+18
|/
* Bump version: 34.2.0 → 34.3.0v34.3.0Jason R. Coombs2017-02-232-2/+2
|
* Remove incorrect open bound on 3.6 or later for warehouse patch.Jason R. Coombs2017-02-231-2/+0
|
* Update version match for issue12885. Ref #971.Jason R. Coombs2017-02-232-7/+4
|
* Merge pull request #961 from pypa/feature/upload-infer-usernameJason R. Coombs2017-02-232-0/+10
|\ | | | | In upload, infer the username using getpass.getuser()
| * Merge branch 'master' into feature/upload-infer-usernameJason R. Coombs2017-02-2316-42/+103
| |\ | |/ |/|
* | Release on Python 3.6Jason R. Coombs2017-02-231-1/+1
| |
* | Remove redundant test from -nspkg.pth.Jason R. Coombs2017-02-211-1/+1
| | | | | | | | If m is non-true, then has_mfs must have been False.
* | Bump version: 34.1.1 → 34.2.0v34.2.0Jason R. Coombs2017-02-122-2/+2
| |
* | Merge pull request #968 from ↵Jason R. Coombs2017-02-123-1/+47
|\ \ | | | | | | | | | | | | moriyoshi/moriyoshi/local-version-label-in-egg-fragment A local version label starts with a '+' sign
| * | Description for the change.Moriyoshi Koizumi2017-02-131-0/+4
| | |
| * | Add a test.Moriyoshi Koizumi2017-02-131-0/+42
| | |
| * | An epoch starts with a number followed by '!'.Moriyoshi Koizumi2017-02-131-1/+1
| | |
| * | A local version label starts with '+' sign, as per ↵Moriyoshi Koizumi2017-02-131-1/+1
|/ / | | | | | | https://www.python.org/dev/peps/pep-0440/#id23
* | Update changelog. Ref #966.Jason R. Coombs2017-02-121-0/+6
| |
* | Merge pull request #966 from daa/zipfile-dist-infoJason R. Coombs2017-02-121-0/+6
|\ \ | | | | | | support dist-info distributions inside zip files
| * | support dist-info distributions inside zip filesAlexander Duryagin2017-02-101-0/+6
|/ /
* | Merge pull request #962 from idlesign/deprecate_classifiers_subsectionJason R. Coombs2017-02-043-21/+13
|\ \ | | | | | | Dropped support for classifiers subsection handling in setup.cfg
| * | Dropped support for classifiers subsection handling in setup.cfg (see #952).idle sign2017-02-043-21/+13
|/ /
* | Bump version: 34.1.0 → 34.1.1v34.1.1Jason R. Coombs2017-02-032-2/+2
| |
* | Always cast to str on Linux and Python 2, let rmtree handle the rest. Fixes ↵Jason R. Coombs2017-02-032-1/+6
| | | | | | | | #953.
* | Require sphinx 1.4 for autosectionlabel plugin. Ref #957.Jason R. Coombs2017-02-031-0/+1
| |
* | Merge pull request #957 from smheidrich/fix_hardlinks_via_autosectionlabelJason R. Coombs2017-02-023-11/+8
|\ \ | | | | | | Fix hard link to URLs that should have been internal (method 2: via autosectionlabel Sphinx extension)
| * | Added autosectionlabel Sphinx extension and replaced some obsolete links.smheidrich2017-02-023-11/+8
| | |
* | | Always generate the dependencies.Jason R. Coombs2017-02-021-1/+1
| | |
* | | In bootstrap, defer installation of dependencies if unneeded. Ref #958.Jason R. Coombs2017-02-021-9/+4
| | |
* | | Extract main functionJason R. Coombs2017-02-021-1/+4
| | |
* | | Merge pull request #958 from jjhelmus/opt_bootstrapJason R. Coombs2017-02-021-2/+12
|\ \ \ | | | | | | | | Add --skip-dep-install to boostrap.py script
| * | | Add --skip-dep-install to boostrap.py scriptJonathan Helmus2017-02-021-2/+12
|/ / / | | | | | | | | | | | | | | | | | | | | | The --skip-dep-install flag skips installation of setuptools dependencies using pip, delegating this responsibility to other tools. This can be used to install setuptools without the need for pip. closes #950
| | * Update changelog. Ref #961.Jason R. Coombs2017-02-231-0/+6
| | |
| | * Infer the username using getpass.getuser() if no username is resolved from ↵Jason R. Coombs2017-02-021-0/+4
| |/ |/| | | | | .pypirc.
* | Rely on backports.unittest_mock plugin to make mock available on old Python ↵Jason R. Coombs2017-01-303-12/+3
| | | | | | | | versions. Ref #949.
* | Bump version: 34.0.3 → 34.1.0v34.1.0Jason R. Coombs2017-01-282-2/+2
| |
* | Update changelog. Ref #930.Jason R. Coombs2017-01-281-0/+6
| |
* | Merge pull request #930 from GandaG/build_clibJason R. Coombs2017-01-285-1/+211
|\ \ | | | | | | Add timestamp-based dependency system to build_clib
| * | Added build_clib module and unit tests.Daniel Nunes2017-01-193-1/+158
| | | | | | | | | | | | | | | Added rudimentary dependency system for build_libraries. Added obj_deps and cflags keys to build_info dictionary.
| * | Added tests for newer_pairwise_group().Daniel Nunes2017-01-151-0/+30
| | |
| * | Added newer_pairwise_group() convenience function.Daniel Nunes2017-01-141-0/+23
| | |
* | | Bump version: 34.0.2 → 34.0.3v34.0.3Jason R. Coombs2017-01-282-2/+2
| | |