summaryrefslogtreecommitdiff
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of https://github.com/pypa/setuptoolsJason R. Coombs2017-07-242-17/+40
|\
| * Revert "fix `install_requires` handling of extras"Benoit Pierre2017-07-232-13/+40
| | | | | | | | This reverts commit a3ec721ec1e70f1f7aec6c3349ad85b446410809.
* | Extract method capturing the 'suffix' for a marker.Jason R. Coombs2017-07-231-4/+16
| |
* | Parse the requirements just once for simplicity and clarityJason R. Coombs2017-07-231-8/+3
|/
* Align suffix calculation for extras sectionsJason R. Coombs2017-07-231-9/+4
|
* Refactor a bit for clarityJason R. Coombs2017-07-231-9/+12
|
* Consolidate logic around a 'simple' requirementJason R. Coombs2017-07-231-7/+11
|
* Extract a function for removing extras and marker from a requirement.Jason R. Coombs2017-07-231-9/+15
|
* Handle rebuild of install_requires separate from building extras"Jason R. Coombs2017-07-231-7/+12
|
* Use term 'section' consistentlyJason R. Coombs2017-07-231-5/+4
|
* Extract two methods (still interdependent) for fixing requiresJason R. Coombs2017-07-231-9/+19
|
* Consolidate assignment of extras to the key in extras requirements.Jason R. Coombs2017-07-231-5/+3
|
* Extract variable for nicer indentationJason R. Coombs2017-07-231-6/+4
|
* fix `install_requires` handling of extrasBenoit Pierre2017-07-152-4/+41
| | | | | | Internally move requirements in `install_requires` that are using extras to `extras_require` so those extras don't get stripped when building wheels.
* fix `extras_require` handlingBenoit Pierre2017-07-152-27/+66
| | | | | Allow requirements of the form `"extra": ["barbazquux; {marker}"]` by internally converting them to `"extra:{marker}": ["barbazquux"]`.
* fix possible error when finalizing `install_requires`Benoit Pierre2017-07-152-2/+22
|
* tests: rework clean install testBenoit Pierre2017-07-151-0/+31
| | | | Use pytest-virtualenv so the test can be run no Windows too.
* tests: switch back to mock instead of backports.unittest_mockBenoit Pierre2017-07-153-3/+3
|
* DelintJason R. Coombs2017-07-131-1/+1
|
* DelintJason R. Coombs2017-07-131-20/+31
|
* Use filter and next to directly extract a single failure.Jason R. Coombs2017-07-131-8/+12
|
* Use better variable names and the partition method for simplicity.Jason R. Coombs2017-07-131-7/+6
|
* ReindentJason R. Coombs2017-07-131-11/+12
|
* Extract _check_extra functionJason R. Coombs2017-07-131-7/+11
|
* extract variable for expected_requires.Jason R. Coombs2017-07-131-4/+5
|
* Extract the creation of the mismatch marker.Jason R. Coombs2017-07-131-13/+21
|
* Restore test that includes an environment marker.Jason R. Coombs2017-07-131-0/+6
|
* Merge pull request #1081 from benoit-pierre/fix_environment_markers_handlingJason R. Coombs2017-07-132-6/+43
|\ | | | | Fix environment markers handling
| * fix handling of environment markers in `install_requires`Benoit Pierre2017-07-132-6/+43
| |
* | tests: mark test_unicode_filename_in_sdist with fail_on_asciiBenoit Pierre2017-07-131-0/+2
| |
* | tests: fix `fail_on_ascii` fixtureBenoit Pierre2017-07-131-2/+2
|/ | | | | | | | | | | | | | | In my environment, with: - LANGUAGE=en_US:en_GB:en:C - LC_ALL=en_US.UTF-8 Running the testsuite with: - python3.6 -m pytest: is successful - tox -e py36: fails The later because LC_ALL is unset by tox, and LANGUAGE is not passed through, so `locale.getpreferredencoding()` returns 'ANSI_X3.4-1968'.
* Use makedirs with future compatibility throughout setuptools. Ref #1083.Jason R. Coombs2017-07-134-10/+11
|
* Limit the scope of deprecation of the upload_docs command.Jason R. Coombs2017-06-061-1/+2
|
* fixed #1042 -- corrected an importAlex Gaynor2017-05-311-1/+1
|
* Merge branch 'master' into feature/re-vendor-sadfaceJason R. Coombs2017-05-3018-161/+432
|\
| * Just use class in its namespaceJason R. Coombs2017-05-211-4/+3
| |
| * Implement AbstractSandbox as a context manager.Jason R. Coombs2017-05-212-17/+18
| |
| * Use new style format strings and expand args to variables for better clarity ↵Jason R. Coombs2017-05-211-2/+3
| | | | | | | | of purpose.
| * Expand test to cover string rendering of SandboxViolationJason R. Coombs2017-05-211-0/+4
| |
| * Use dedent and left strip to store the template inside the class.Jason R. Coombs2017-05-211-8/+13
| |
| * Remove extraneous whitespace and empty commentJason R. Coombs2017-05-211-3/+0
| |
| * Document -s to run single testanatoly techtonik2017-05-161-1/+1
| | | | | | Fixes https://github.com/pypa/setuptools/issues/1032
| * Make _get_mro private; Swap logic to put preferred behavior at top level; ↵Jason R. Coombs2017-04-271-7/+8
| | | | | | | | Update docstring to reference issue.
| * Use a different method to lookup base classes on JythonNick Douma2017-04-271-1/+14
| | | | | | | | | | | | | | | | | | | | | | Jython seems to implement inspect.getmro differently, which causes any classes with the same name as a class lower in the MRO not to be returned. This patch offloads the MRO lookup to a separate function, which implements different logic for Jython only. Ref #1024
| * Rewrite tests to test the actual matching rather than making assertions ↵Jason R. Coombs2017-04-181-20/+83
| | | | | | | | about the regular expressions. Fixes #1015.
| * Pass flags programmatically, avoiding deprecating trailing pattern flags ↵Jason R. Coombs2017-04-182-14/+15
| | | | | | | | syntax revealed in #1015.
| * Merge regression test for #1016.Jason R. Coombs2017-04-181-0/+15
| |\
| | * Add an integration test to install pyuriPi Delport2017-04-181-0/+15
| | | | | | | | | | | | This test is also a regression test for issue #1016.
| * | Revert "addresses #436". Fixes #1016.Jason R. Coombs2017-04-181-0/+2
| |/ | | | | | | This reverts commit 1955e5b0df67cc1aa389b8c655199958a6fcc6a0.
| * Revert "In msvc9_query_vcvarsall, ensure dict values are not unicode. Fixes ↵Jason R. Coombs2017-04-162-18/+1
| | | | | | | | | | | | #992." This reverts commit b50fdf497d6970002a2f7156650d7da21e2e39f5.