summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | Extract method for _version_from_egg_info.Jason R. Coombs2015-11-281-15/+24
| | | | | | | | | | |
| * | | | | | | | | | Add docstringJason R. Coombs2015-11-281-0/+4
| | | | | | | | | | |
| * | | | | | | | | | Return None when no version is encountered.Jason R. Coombs2015-11-281-2/+2
| | | | | | | | | | |
| * | | | | | | | | | Use partition to avoid integer literalsJason R. Coombs2015-11-281-1/+2
| | | | | | | | | | |
| * | | | | | | | | | Rewrite _version_from_file using iterables and filtersJason R. Coombs2015-11-281-5/+5
| | | | | | | | | | |
| * | | | | | | | | | Merge with latest testsJason R. Coombs2015-11-281-7/+28
| |\ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | Look deeper at .egg-info files for package name and version information when ↵Eric Larson2015-09-011-7/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | available.
| * | | | | | | | | | | Rewrite test to use distutils' install_egg_info to generate the metadata.Jason R. Coombs2015-11-281-10/+11
| | | | | | | | | | | |
| * | | | | | | | | | | Rewrite test to simply create the egg_info.Jason R. Coombs2015-11-281-80/+35
| | | | | | | | | | | |
| * | | | | | | | | | | Rename test to match intention.Jason R. Coombs2015-11-281-1/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Move test into pkg_resources testsJason R. Coombs2015-11-282-85/+96
| |/ / / / / / / / / /
| * | | | | | | | | | Add tests ref #419.Eric Larson2015-11-151-5/+91
| | | | | | | | | | |
* | | | | | | | | | | Update changelogJason R. Coombs2015-11-271-0/+3
| | | | | | | | | | |
* | | | | | | | | | | MergeJason R. Coombs2015-11-271-0/+2
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Update changelogJason R. Coombs2015-11-271-0/+2
| | | | | | | | | | | |
* | | | | | | | | | | | Merged in sunpoet/setuptools (pull request #158)Jason R. Coombs2015-11-271-0/+2
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix package list inconsistency caused by namespace package on Python 3.5
| * | | | | | | | | | | | Fix package list inconsistency caused by namespace package on Python 3.5sunpoet2015-11-201-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | namespace package will be skipped during installation. Since Python 3.5, .pyo files are removed and new .opt-1.pyc (and .opt-2.pyc) files are introduced [1]. However setuptools does not understand that new naming therefore the corresponding foo.opt-1.pyc is still added into package list (via --record). The inconsistency leads to a packaging error. [1] https://www.python.org/dev/peps/pep-0488/
* | | | | | | | | | | | | Merged in dweepcan/setuptools (pull request #153)Jason R. Coombs2015-11-271-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unload all pkg_resources modules and not just the main module.
| * | | | | | | | | | | | | Uses an existing method to delete pkg_resourcesDweep Shah2015-10-271-6/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Unload all pkg_resources modules and not just the main module. Fixes #453.Dweep Shah2015-10-261-1/+6
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merged in rbtcollins/setuptools (pull request #156)Jason R. Coombs2015-11-2716-90/+428
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|/ / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Fix EBNF for package specifications.
| * | | | | | | | | | | | | Make test.test_args a non-data property per Pull Request #155.Jason R. Coombs2015-11-272-1/+14
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Extract _use_header methodJason R. Coombs2015-11-271-10/+16
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Update changelogJason R. Coombs2015-11-271-0/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merged in grizzlynyo/setuptools/bdist_wininst_gui_scripts (pull request #160)Jason R. Coombs2015-11-271-4/+7
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix an issue for bdist_wininst with gui_scripts:
| | * | | | | | | | | | | | | fix an issue for bdist_wininst with gui_scripts:bdist_wininst_gui_scriptsgrizzlynyo2015-11-211-4/+7
| | | |/ / / / / / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The script header was always generated with non-gui executable. This was caused by by adjust_header assuming the executable is always an absolute path. Fixed by using find_executables() from distutils.
| * | | | | | | | | | | | | Update changelogJason R. Coombs2015-11-271-0/+6
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Merged in grizzlynyo/setuptools/sync_certifi (pull request #159)Jason R. Coombs2015-11-271-2/+2
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | update certifi to 2015.11.20
| | * | | | | | | | | | | | | update certifi to 2015.11.20sync_certifigrizzlynyo2015-11-211-2/+2
| | |/ / / / / / / / / / / /
| * | | | | | | | | | | | | Fix docstring started with """" instead of """John Vandenberg2015-11-131-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Add a bit more detail about the setup script and what to expect. Fixes #466.Jason R. Coombs2015-11-271-2/+8
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Update tox tests so they run the full suite of tests using the canonical ↵Jason R. Coombs2015-11-252-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | technique. Include .tox in norecursedirs to avoid testing all the dependencies and environment. Update docs to reflect findings (https://bitbucket.org/spookylukey/setuptools/commits/88339d2e4af661a60a42bc14c4ff3e68cd19fa21#comment-2558164).
| * | | | | | | | | | | | | Skip the test when running under venv alsoJason R. Coombs2015-11-251-2/+4
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | No need for a separate DEVGUIDEJason R. Coombs2015-11-251-1/+0
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Draft a test for testing the new expectation for develop command (and ↵Jason R. Coombs2015-11-241-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | general functionality when console scripts are present).
| * | | | | | | | | | | | | Rename tests for clarityJason R. Coombs2015-11-241-2/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Use if clause.Jason R. Coombs2015-11-241-4/+4
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Use io.open and its context for simpler reading of a fileJason R. Coombs2015-11-241-8/+5
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Use quiet context to suppress stdout.Jason R. Coombs2015-11-241-5/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Remove unused importsJason R. Coombs2015-11-241-2/+0
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Extract variableJason R. Coombs2015-11-241-6/+7
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Replace silent test acceptance with a proper skip checkJason R. Coombs2015-11-241-11/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Extract setup/teardown methods as proper fixtures.Jason R. Coombs2015-11-241-27/+30
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Use context manager for opening fileJason R. Coombs2015-11-241-6/+4
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Bumped to 18.6.2 in preparation for next release.Jason R. Coombs2015-11-242-2/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Added tag 18.6.1 for changeset 804f87045a90Jason R. Coombs2015-11-240-0/+0
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Bumped to 18.6.1 in preparation for next release.18.6.1Jason R. Coombs2015-11-242-2/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Update changelogJason R. Coombs2015-11-241-0/+8
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | issue #464: don't crash using super() on a old-style classRyan Kelly2015-11-241-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Suppress testing of upload-releases-as-zip scriptJason R. Coombs2015-11-241-1/+1
| | | | | | | | | | | | | |