summaryrefslogtreecommitdiff
path: root/pkg_resources
Commit message (Collapse)AuthorAgeFilesLines
* Handle Python3.12a7 compatibility problemsAnderson Bravalheri2023-04-193-0/+15
|
* Make pkg_resources more forgiving of non-compliant versions (#3839)Anderson Bravalheri2023-03-061-1/+62
|\
| * Remove duplication in warning messageAnderson Bravalheri2023-02-271-1/+1
| |
| * Make pkg_resources more forgiving of non-compliant versionsAnderson Bravalheri2023-02-271-1/+62
| |
* | Deprecate pkg_resources, removing excuse that 'discouraged is not deprecated'.Jason R. Coombs2023-03-051-4/+9
|/
* Update vendored importlib_*Anderson Bravalheri2023-02-1723-210/+683
|
* Make clear which package is calling pkg_resources.declare_namespacesAnderson Bravalheri2023-02-151-0/+1
|
* Add links explaining deprecationsAnderson Bravalheri2023-02-131-1/+3
|
* Add DeprecationWarning to `pkg_resources.declare_namespace`Anderson Bravalheri2023-02-132-4/+13
|
* Remove pypackaging from extern in pkg_resourcesAnderson Bravalheri2023-01-231-1/+0
|
* Update pkg_resources errors to be compatible with newer packagingAnderson Bravalheri2023-01-231-16/+39
|
* Update vendored packaging/jaraco.context for pkg_resourcesAnderson Bravalheri2023-01-2351-12047/+1805
|
* Flip conditionals around package finders in pkg_resources (#3685)Anderson Bravalheri2023-01-201-7/+7
|\ | | | | | | | | | | | | - In Python 3.3+ importlib.machinery.FileFinder is always present, therefore we no longer need to keep the conditional - In Python 3.12+ pkgutil.ImpImporter is removed, so we need a conditional to avoid using it directly.
| * Remove conditional for FileFinder in pkg_resourcesAnderson Bravalheri2023-01-181-5/+2
| | | | | | | | FileFiler should always be present in Python 3.3+
| * Wrap deprecated pkgutil usage in pkg_resources in conditionalAnderson Bravalheri2023-01-181-2/+5
| |
* | Avoid unecessarily lengthy tracebackAnderson Bravalheri2023-01-181-1/+1
| |
* | Add informative notes for the InvalidVersion error (LegacyVersion removal)Anderson Bravalheri2023-01-181-1/+8
|/
* Merge pull request #2822 from pypa/debt/remove-legacy-versionJason R. Coombs2023-01-151-86/+2
|\ | | | | Remove reliance on LegacyVersion
| * Merge branch 'main' into debt/remove-legacy-versionJason R. Coombs2023-01-14105-7691/+15483
| |\
| * \ Merge branch 'main' into debt/remove-legacy-versionJason R. Coombs2022-02-12136-1051/+12899
| |\ \
| * \ \ Merge branch 'main' into debt/remove-legacy-versiondebt/remove-legacy-versionJason R. Coombs2021-11-141-9/+9
| |\ \ \
| * \ \ \ Merge branch 'main' into debt/remove-legacy-versionJason R. Coombs2021-10-225-16/+36
| |\ \ \ \
| * | | | | Remove use of packaging.version.LegacyVersion. Fixes #2497.Jason R. Coombs2020-12-201-69/+2
| | | | | |
* | | | | | Merge branch 'main' into debt/lintJason R. Coombs2023-01-1467-1990/+4827
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | |
| * | | | | Add typing extensions for compatibility with Python 3.7.Jason R. Coombs2023-01-139-1/+2670
| | | | | |
| * | | | | Replace appdirs with platformdirs.Jason R. Coombs2023-01-1324-1109/+1405
| | | | | |
| * | | | | ⚫ Fade to black.Jason R. Coombs2023-01-131-158/+214
| | | | | |
| * | | | | Update vendored transitive dependencies.Jason R. Coombs2023-01-1339-730/+544
| | | | | |
* | | | | | Extract method for resolving the dist. Fixes complexity lint.Jason R. Coombs2023-01-131-31/+36
|/ / / / /
* | | | | Consistently use unittest.mock in testsMiro Hrončok2022-10-172-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Some tests used unittest.mock from the standard library - Some tests used mock from PyPI - Some tests tried to import unittest.mock with a fallback to mock (the import never fails on Python 3.7+, older Pythons are not supported)
* | | | | Update vendored pyparsing filesAnderson Bravalheri2022-07-1416-135/+324
| | | | |
* | | | | Update pyparsing in vendored.txtAnderson Bravalheri2022-07-141-1/+1
| | | | |
* | | | | Update pyparsing to fix problems with 3.11Anderson Bravalheri2022-04-2125-5809/+10573
| | | | |
* | | | | Update version of pyparsing in vendored.txtAnderson Bravalheri2022-04-211-1/+1
| | | | |
* | | | | Add matching of normalized requirements to canonical packagesŁukasz Daniluk2022-03-241-3/+16
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Łukasz Daniluk <lukasz.dan@gmail.com>
* | | | | Add tests for normalized package name resolutionŁukasz Daniluk2022-03-241-1/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to PEP 503 package requirements might be specified using normalized name which won't be resolved by WorkingSet. Signed-off-by: Łukasz Daniluk <lukasz.dan@gmail.com>
* | | | | Bump packaging to 21.3Jason R. Coombs2022-02-1215-59/+37
| |_|_|/ |/| | |
* | | | Restore more_itertools.more, make importing `concurrent.futures` lazyMaciej Pasternacki2022-02-084-0/+4982
| | | | | | | | | | | | | | | | Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
* | | | Clean also .pyi of more_itertoolsMaciej Pasternacki2022-02-082-665/+0
| | | |
* | | | Remove more_itertools.more from vendored libs (fixes pypa/setuptools#3090)Maciej Pasternacki2022-02-082-4318/+0
| | | |
* | | | Ensure that _vendor/jaraco is available as a module. Fixes #3084.Jason R. Coombs2022-02-061-0/+0
| | | |
* | | | Remove 'lorem_ipsum' property from jaraco.text, bypassing the behavior on ↵Jason R. Coombs2022-02-021-1/+0
| | | | | | | | | | | | | | | | import and other issues.
* | | | Remove workaround to add __init__ for vendored jaraco package, seemingly ↵Jason R. Coombs2022-01-291-0/+0
| | | | | | | | | | | | | | | | unnecessary.
* | | | Ensure text file from vendored package is included.Jason R. Coombs2022-01-291-0/+0
| | | |
* | | | Include all the dependencies needed to run on Python 3.7 and patch all of ↵Jason R. Coombs2022-01-2959-5/+2600
| | | | | | | | | | | | | | | | them to work in a vendored environment.
* | | | Vendor jaraco.text to supply yield_lines, drop_comment, and join_continuation.Jason R. Coombs2022-01-2939-77/+7977
| | | |
* | | | Merge pull request #3045 from pypa/feature/refactor-parse-requirementsJason R. Coombs2022-01-291-15/+63
|\ \ \ \ | | | | | | | | | | Feature/refactor parse requirements
| * | | | Consolidate behavior now that it fits on one line.feature/refactor-parse-requirementsJason R. Coombs2022-01-231-3/+3
| | | | |
| * | | | Extract function for joining continuations in lines.Jason R. Coombs2022-01-231-12/+35
| | | | |
| * | | | Extract function for dropping comments.Jason R. Coombs2022-01-231-4/+16
| | | | |