summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'main' into feature/distutils-docsfeature/distutils-docsJason R. Coombs2021-04-2599-1767/+2886
|\
| * Merge pull request #2655 from webknjaz/maintenance/drop-netlifyJason R. Coombs2021-04-252-8/+0
| |\ | | | | | | 🔥 Drop the Netlify configs
| | * 🔥 Drop the Netlify configsSviatoslav Sydorenko2021-04-252-8/+0
| | | | | | | | | | | | | | | This is no longer needed since the project relies on RTD PR builds for some time already.
| * | Merge pull request #2654 from webknjaz/docs/modern-towncrierJason R. Coombs2021-04-252-0/+6
| |\ \ | | |/ | |/| Make changelog tmpl compatible w/ new Towncrier
| | * Add a change note for PR #2654Sviatoslav Sydorenko2021-04-251-0/+2
| | |
| | * Make changelog tmpl compatible w/ new towncrierSviatoslav Sydorenko2021-04-251-0/+4
| |/ | | | | | | Ref: https://github.com/pypa/pip/issues/9815
| * Merge pull request #2644 from tirkarthi/fix-threadingJason R. Coombs2021-04-242-1/+2
| |\ | | | | | | Set daemon attribute instead of using setDaemon method that was deprecated in Python 3.10
| | * Set daemon attribute instead of using setDaemon method that was deprecated ↵Karthikeyan Singaravelan2021-04-172-1/+2
| | | | | | | | | | | | in Python 3.10
| * | Merge pull request #2649 from webknjaz/maintenance/issue-forms--deprecationsPradyun Gedam2021-04-223-20/+16
| |\ \ | | | | | | | | Drop deprecated `issue_body` from the forms
| | * | Drop deprecated `issue_body` from the formsSviatoslav Sydorenko2021-04-213-20/+16
| |/ /
| * | Merge pull request #2635 from cdce8p/refactor-distJason R. Coombs2021-04-142-28/+95
| |\ \ | | |/ | |/| Refactor ``read_pkg_file``
| | * Add rfc822_unescapeMarc Mueller2021-04-102-1/+60
| | |
| | * Refactor dist.read_pkg_fileMarc Mueller2021-04-101-28/+36
| |/
| * Bump version: 55.0.0 → 56.0.0v56.0.0Jason R. Coombs2021-04-088-13/+30
| |
| * Merge pull request #2633 from webknjaz/bugfixes/2632-importlib-find_specJason R. Coombs2021-04-083-20/+25
| |\ | | | | | | Implement `find_spec` in vendored module importers
| | * Use importlib.util.spec_from_loader in find_specSviatoslav Sydorenko2021-04-092-4/+4
| | |
| | * Drop deprecated `find_module` from vendor importerSviatoslav Sydorenko2021-04-082-16/+0
| | |
| | * Implement `find_spec` in vendored module importersSviatoslav Sydorenko2021-04-082-12/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change makes the import warning emitted by Python 3.10 disappear but implementing the hook that is supposed to replace the old import mechanism. Refs: * https://bugs.python.org/issue42134 * https://bugs.python.org/issue43540 * https://github.com/pypa/setuptools/issues/2632#issuecomment-815701078 Fixes #2632 Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
| | * Add a change note for PR #2633Sviatoslav Sydorenko2021-04-081-0/+3
| |/
| * Merge pull request #2620 from cdce8p/license-files-impromentsJason R. Coombs2021-04-039-27/+118
| |\ | | | | | | License_files improvements
| | * Small changesMarc Mueller2021-04-034-5/+5
| | |
| | * Change deprecation warningMarc Mueller2021-04-031-4/+3
| | |
| | * Additional test casesMarc Mueller2021-04-031-3/+62
| | |
| | * Add documentation + changelog entriesMarc Mueller2021-04-036-1/+22
| | |
| | * license_files - Add support for glob patterns + add default patternsMarc Mueller2021-04-033-23/+35
| |/
| * Merge pull request #2626 from Yhg1s/patch-1Jason R. Coombs2021-04-031-1/+1
| |\ | | | | | | Fix typo in setup.py example in quickstart guide.
| | * Update quickstart.rstT. Wouters2021-03-291-1/+1
| | |
| | * Fix typo in setup.py example in quickstart guide.T. Wouters2021-03-291-1/+1
| | |
| * | Merge pull request #2623 from Zedeldi/patch-1Jason R. Coombs2021-04-031-4/+4
| |\ \ | | | | | | | | Update dependency_management.rst
| | * | Update dependency_management.rstZack Didcott2021-03-291-4/+4
| | |/ | | | | | | Fix spelling and grammar
| * | Merge pull request #2621 from cdce8p/fix-testsJason R. Coombs2021-04-031-1/+1
| |\ \ | | | | | | | | Test - Fix url for pip download
| | * | Tests - Fix url for pip downloadMarc Mueller2021-03-281-1/+1
| | | |
| * | | Officially declare pkg_resources as deprecated. Closes #2531.Jason R. Coombs2021-04-031-0/+7
| | | |
| * | | Bump version: 54.2.0 → 55.0.0v55.0.0Jason R. Coombs2021-03-304-3/+11
| | | |
| * | | Merge pull request #2566 from hroncok/remove_bdist_wininstJason R. Coombs2021-03-306-55/+9
| |\ \ \ | | | | | | | | | | Remove bdist_wininst, Filter out distutils deprecation
| | * | | Filter out distutils deprecation warning until the situation is resolvedMiro Hrončok2021-03-081-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The distutils platform problems are likely to be resolved before the removal. Once this happens, setuptools will no longer use distutils from the Python standard library.
| | * | | Remove bdist_wininstMiro Hrončok2021-03-085-55/+4
| | | | | | | | | | | | | | | | | | | | Fixes https://github.com/pypa/setuptools/issues/2558
| * | | | Section for 'find' and 'find_namespace' options is 'options.packages.find'. ↵Jason R. Coombs2021-03-301-1/+1
| | |_|/ | |/| | | | | | | | | | Fixes #2406.
| * | | Merge pull request #2622 from webknjaz/bugfixes/2614-sphinx-inline-tabsJason R. Coombs2021-03-281-1/+1
| |\ \ \ | | |_|/ | |/| | Use `sphinx-inline-tabs` from PyPI in sphinx docs
| | * | Use sphinx-inline-tabs from PyPISviatoslav Sydorenko2021-03-281-1/+1
| |/ / | | | | | | | | | Fixes #2614
| * | Merge branch 'rtd/unified'Jason R. Coombs2021-03-271-1/+0
| |\ \
| | * | Remove latent comment. Meant for previous commit.Jason R. Coombs2021-03-271-1/+0
| | | |
| * | | Merge pull request #2619 from pypa/rtd/unifiedJason R. Coombs2021-03-273-10/+4
| |\ \ \ | | |/ / | | | | Align RTD config with skeleton
| | * | Reset RTD config to match skeleton and rely on package metadata for docs ↵Jason R. Coombs2021-03-273-10/+4
| | | | | | | | | | | | | | | | build requirements.
| * | | Merge pull request #2617 from jugmac00/patch-1Jason R. Coombs2021-03-271-1/+1
| |\ \ \ | | |/ / | |/| | remove duplicate word
| | * | remove duplicate wordJürgen Gmach2021-03-241-1/+1
| | | |
| * | | Pin to upstream main branch for sphinx-inline-tabs. Workaround for #2614.Jason R. Coombs2021-03-271-1/+1
| | | |
| * | | Merge https://github.com/jaraco/tideliftJason R. Coombs2021-03-241-1/+0
| |\ \ \ | | |/ / | |/| |
| | * | Remove Tidelift from main.yml, no longer neededJason R. Coombs2021-03-231-6/+0
| | | |
| * | | Merge https://github.com/jaraco/tideliftJason R. Coombs2021-03-221-3/+0
| |\ \ \ | | |/ /