summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump version: 40.4.1 → 40.4.2v40.4.2Jason R. Coombs2018-09-214-3/+8
|
* Update changelog for example release.Jason R. Coombs2018-09-211-0/+1
|
* Merge pull request #1497 from joeflack4/feature_gitignore_ideaPaul Ganssle2018-09-201-0/+1
|\ | | | | Added .idea/ to gitignore, to cover cases where people are using a Jetbrains text editor
| * Added .idea/ to gitignore, to cover cases where people are using a Jetbrains ↵joeflack42018-09-191-0/+1
|/ | | | text editor.
* Bump version: 40.4.0 → 40.4.1v40.4.1Jason R. Coombs2018-09-184-3/+8
|
* Bump to pyparsing 2.2.1 and re-run paver update_vendored. Fixes #1480.Jason R. Coombs2018-09-183-13/+36
|
* Update pavement not to import pipJason R. Coombs2018-09-181-2/+5
|
* Bump version: 40.3.0 → 40.4.0v40.4.0Jason R. Coombs2018-09-184-3/+8
|
* Merge pull request #1481 from gaborbernat/sdist-dirJason R. Coombs2018-09-183-5/+38
|\ | | | | build_meta sdist directory delegate to --dist-dir
| * wordsmith changelogJason R. Coombs2018-09-181-1/+1
| |
| * add changelog for #1481Bernat Gabor2018-09-161-0/+1
| |
| * Add tests exposing the issues with sdist_directory not being --dist-dirBernat Gabor2018-09-161-1/+35
| |
| * build_meta sdist directory delegate to --dist-dirBernat Gabor2018-09-161-4/+2
|/
* Bump version: 40.2.0 → 40.3.0v40.3.0Jason R. Coombs2018-09-168-8/+13
|
* Merge pull request #1491 from pypa/revert-1324-safe_nameJason R. Coombs2018-09-162-3/+2
|\ | | | | Revert "Make safe_name compliant to PEP 503 and behaviour of pip > 8.1.2"
| * Revert "Make safe_name compliant to PEP 503 and behaviour of pip > 8.1.2"Jason R. Coombs2018-09-162-3/+2
|/
* Add periods to changelog entriesJason R. Coombs2018-09-162-2/+2
|
* Minor rewordJason R. Coombs2018-09-161-1/+1
|
* Merge pull request #1402 from ↵Jason R. Coombs2018-09-163-13/+41
|\ | | | | | | | | daa/pkg-resources-always-handle-namespace-package-path Improved handling of module __path__ attribute for namespace packages, fixes #1321
| * remove xfail for AppVeyor from namespace tests entirelyAlexander Duryagin2018-08-211-4/+0
| |
| * remove xfail for namespace tests that actually pass in AppVeyorAlexander Duryagin2018-08-211-13/+1
| |
| * change formatting to fix flake8 warningAlexander Duryagin2018-08-171-2/+4
| |
| * xfail namespace packages tests on appveyor instead of skipping themAlexander Duryagin2018-08-171-8/+16
| |
| * added changelog.d entryAlexander Duryagin2018-06-271-0/+2
| |
| * always process module.__path__ for namespace packages, fixes #1321Alexander Duryagin2018-06-272-5/+37
| |
* | Merge pull request #1324 from torsava/safe_nameJason R. Coombs2018-09-162-2/+3
|\ \ | | | | | | Make safe_name compliant to PEP 503 and behaviour of pip > 8.1.2
| * | Update changelogJason R. Coombs2018-09-161-0/+1
| | |
| * | Make safe_name compliant to PEP 503 and behaviour of pip > 8.1.2Tomas Orsava2018-04-121-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to PEP 503, a "normalized" project name has all runs of the characters ., - and _ replaced with a single - character. [0] Similarly, since version 8.1.2, that is the behaviour of pip as well. [1] However, Setuptools still allows a . in the normalized name, which is causing trouble down the line. [0] https://www.python.org/dev/peps/pep-0503/#normalized-names [1] https://github.com/pypa/pip/issues/3666
* | | Merge pull request #1427 from stephenfin/touch-egg-info-directoryJason R. Coombs2018-09-165-0/+20
|\ \ \ | | | | | | | | Touch 'egg-info' directory
| * | | egg_info: Touch 'egg-info' directoryStephen Finucane2018-08-193-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'tox' determines whether a package should be rebuilt by comparing the timestamp of the package's 'egg-info' directory and its 'setup.py' or 'setup.cfg' files [1][2]. Unfortunately this checks the 'egg-info' directory itself, which is not updated, unlike the contents of that directory. This means that 'tox' will always rebuild the package once one of the two setup files has been updated. While this is clearly a bug in 'tox' that should be fixed separately, there is merit in using this as a heuristic so enable it. [1] https://github.com/tox-dev/tox/blob/3.1.0/src/tox/venv.py#L253-L257 [2] https://github.com/tox-dev/tox/blob/3.1.0/src/tox/venv.py#L221-L244 Signed-off-by: Stephen Finucane <stephen@that.guru>
| * | | trivial: Fix file permissionsStephen Finucane2018-08-191-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | There's no reason these should be executable. Signed-off-by: Stephen Finucane <stephen@that.guru>
| * | | gitignore: Ignore .venv directoryStephen Finucane2018-08-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | These are commonly used for testing purposes. Signed-off-by: Stephen Finucane <stephen@that.guru>
* | | | Merge pull request #1490 from pypa/bugfix/sphinx/5417Jason R. Coombs2018-09-161-1/+1
|\ \ \ \ | | | | | | | | | | Pin against sphinx 1.8.0 due to sphinx-doc/sphinx#5417.
| * | | | Pin against sphinx 1.8.0 due to sphinx-doc/sphinx#5417.Jason R. Coombs2018-09-161-1/+1
| | | | |
* | | | | Fix other broken references due to moving changelogJason R. Coombs2018-09-161-4/+4
| | | | |
* | | | | Fix broken reference to setuptools docsJason R. Coombs2018-09-161-1/+1
|/ / / /
* | | | Update Easy Install docs reflecting the deprecation.Jason R. Coombs2018-09-161-0/+6
| | | |
* | | | Remove backwards compatibility notes and future plans from Easy Install docsJason R. Coombs2018-09-161-45/+0
| | | |
* | | | Merge ancient easy_install history into changelogJason R. Coombs2018-09-162-498/+477
| | | |
* | | | Merge pull request #1477 from gaborbernat/no-sdist-wheelJason R. Coombs2018-09-163-6/+12
|\ \ \ \ | | | | | | | | | | build_meta.get_requires_for_build_sdist does not include wheel
| * | | | build_meta.get_requires_for_build_sdist does not include wheelBernat Gabor2018-09-133-6/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the wheel package is not required to build a source distribution Resolves #1474.
* | | | | Configure readthedocs with a .yml fileJason R. Coombs2018-09-161-0/+4
| | | | |
* | | | | Merge pull request #1486 from pypa/bugfix/1111-import-warningJason R. Coombs2018-09-162-1/+7
|\ \ \ \ \ | | | | | | | | | | | | Suppress warnings in importer.find_module.
| * | | | | Suppress warnings in importer.find_module. Fixes #1111.Jason R. Coombs2018-09-142-1/+7
| | | | | |
* | | | | | Add Tidelift badge to readmeJason R. Coombs2018-09-161-0/+3
| | | | | |
* | | | | | Merge pull request #1479 from jdufresne/bytesJason R. Coombs2018-09-164-10/+43
|\ \ \ \ \ \ | | | | | | | | | | | | | | Remove compatibility shim for bytes type
| * | | | | | Remove use of compatibility shim six.binary_typeJon Dufresne2018-09-143-10/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The type bytes is available on all supported Pythons. Makes the code more forward compatible with Python 3.
| * | | | | | Add tests for setuptools.globJon Dufresne2018-09-141-0/+35
| |/ / / / /
* | | | | | Merge pull request #1489 from nerdoc/patch-1Jason R. Coombs2018-09-161-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | link to setuptools doc
| * | | | | link to setuptools docChristian González2018-09-151-1/+1
|/ / / / /