summaryrefslogtreecommitdiff
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused _all_dirs. Prefer 'candidate' to 'suitable'. Update documentation.Jason R. Coombs2015-08-071-15/+8
|
* Merged in spookylukey/setuptools (pull request #140)Jason R. Coombs2015-08-071-2/+12
|\ | | | | | | Big performance fix for find_packages by ignoring hidden dirs earlier
| * Big performance fix for find_packages by ignoring hidden dirs earlierLuke Plant2015-07-201-2/+12
| |
* | Bumped to 18.2 in preparation for next release.Jason R. Coombs2015-08-021-1/+1
| |
* | Bumped to 18.1 in preparation for next release.18.1Jason R. Coombs2015-08-021-1/+1
|/
* Bumped to 18.0.2 in preparation for next release.Jason R. Coombs2015-06-241-1/+1
|
* Bumped to 18.0.1 in preparation for next release.18.0.1Jason R. Coombs2015-06-241-1/+1
|
* Conditionally remove __PYVENV_LAUNCHER__Jason R. Coombs2015-06-231-1/+1
|
* Bumped to 18.1 in preparation for next release.Jason R. Coombs2015-06-231-1/+1
|
* Merge fixJason R. Coombs2015-06-131-2/+4
|\
| * Fix test failure when __PYVENV_LAUNCHER__ is set. Fixes #396.Jason R. Coombs2015-06-131-2/+4
| |
* | Don't quote executable name twice in script headersStephen Drake2015-06-111-9/+0
| | | | | | | | | | | | | | | | Don't quote the executable name in JythonCommandSpec.from_environment() since it is quoted if necessary in CommandSpec._render(). With the executable quoted on initialisation of JythonCommandSpec, the quotes get escaped in the resulting header, eg: #!/usr/bin/env \"/path/to/jython\"
* | Remove loop, made unnecessary by removal of support for PyrexJason R. Coombs2015-06-101-8/+7
| |
* | Bumped to 18.0 in preparation for next release.18.0b1Jason R. Coombs2015-06-101-1/+1
| |
* | Detect Cython later in the build process, allowing the library to be ↵Jason R. Coombs2015-06-102-23/+13
| | | | | | | | specified in setup_requires. Fixes #288.
* | Bumped to 17.1.2 in preparation for next release.Jason R. Coombs2015-06-081-1/+1
|/
* Bumped to 17.1.1 in preparation for next release.17.1.1Jason R. Coombs2015-06-081-1/+1
|
* Bumped to 17.2 in preparation for next release.Jason R. Coombs2015-06-071-1/+1
|
* Bumped to 17.1 in preparation for next release.Jason R. Coombs2015-05-281-1/+1
|
* Bumped to 17.0 in preparation for next release.17.0Jason R. Coombs2015-05-281-1/+1
|
* Disallow path separators in script names. Fixes #390Jason R. Coombs2015-05-271-0/+10
|
* Update docstring to include the actual entry point names (for hits when ↵Jason R. Coombs2015-05-271-1/+2
| | | | grepping).
* extract variable for nicer indentationJason R. Coombs2015-05-271-2/+2
|
* Bumped to 16.1 in preparation for next release.Jason R. Coombs2015-05-181-1/+1
|
* Bumped to 16.0 in preparation for next release.16.0Jason R. Coombs2015-05-181-1/+1
|
* Use new string formattingJason R. Coombs2015-05-031-7/+8
|
* Render the error message as a single line without a period (for consistency ↵Jason R. Coombs2015-05-031-5/+3
| | | | with other usage).
* Let the exception render itself.Jason R. Coombs2015-05-031-2/+2
|
* Nicer error when problem in install_requiresMarc Abramowitz2015-05-011-2/+6
| | | | | | | | | | | | | | | | Instead of: $ python setup.py egg_info error in adminweb setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers We now have the more helpful: $ python setup.py egg_info error in adminweb setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers. Error: Expected version spec in smsdk.authsvc>=0.0.8,2.0 at 2.0 It took me longer than it should to find the problem with the old error message. The new error message would've helped greatly.
* Merged in agronholm/setuptools (pull request #128)Jason R. Coombs2015-04-261-1/+1
|\ | | | | | | Check for Jython using sys.platform, not os.name
| * Check for Jython using sys.platform, not os.nameAlex Grönholm2015-04-211-1/+1
| |
* | Bumped to 15.3 in preparation for next release.Jason R. Coombs2015-04-261-1/+1
|/
* Bumped to 15.2 in preparation for next release.Jason R. Coombs2015-04-151-1/+1
|
* Fix TypeError for pytest.skip()Thomas Bechtold2015-04-051-1/+1
| | | | | | | | | | pytests skip() method doesn't have a 'reason' parameter. This fixes: TypeError: skip() got an unexpected keyword argument 'reason' --HG-- branch : fix-type-error-skip-reason
* MergeJason R. Coombs2015-04-032-5/+5
|\
| * Fix setuptools.sandbox._execfile() with Python 3.1.Arfrever Frehtes Taifersar Arahesis2015-03-301-4/+4
| | | | | | | | It fixes failure of setuptools.tests.test_sandbox.TestSandbox.test_setup_py_with_CRLF() with Python 3.1.
| * Fix some typos.Arfrever Frehtes Taifersar Arahesis2015-03-301-1/+1
| |
* | Bumped to 15.1 in preparation for next release.Jason R. Coombs2015-04-031-1/+1
|/
* Bumped to 15.0 in preparation for next release.15.0b1Jason R. Coombs2015-03-281-1/+1
|
* Merged in msabramo/setuptools/DistributionNotFound_list_requirers (pull ↵Jason R. Coombs2015-03-281-3/+1
|\ | | | | | | | | | | request #126) DistributionNotFound: Show requirers
| * DistributionNotFound: Move message template to classMarc Abramowitz2015-03-241-3/+1
| | | | | | | | | | --HG-- branch : DistributionNotFound_list_requirers
* | Bumped to 14.3.2 in preparation for next release.Jason R. Coombs2015-03-201-1/+1
| |
* | Bumped to 14.3.1 in preparation for next release.14.3.1Jason R. Coombs2015-03-201-1/+1
| |
* | MergeJason R. Coombs2015-03-201-1/+1
|\ \
| * | Correct regex usageJason R. Coombs2015-03-201-1/+1
| | |
* | | Flat is better than nested.Jason R. Coombs2015-03-201-5/+3
| | |
* | | Remove unused variableJason R. Coombs2015-03-201-1/+1
|/ /
* | Match Python 3 for bdist_dumb.Jason R. Coombs2015-03-201-2/+3
| |
* | Replace deprecated usage with preferred usage. Fixes #364.Jason R. Coombs2015-03-191-1/+2
|/
* Bumped to 14.4 in preparation for next release.Jason R. Coombs2015-03-151-1/+1
|