Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade setuptools and pip #1939

Merged
merged 2 commits into from
Sep 10, 2020
Merged

Upgrade setuptools and pip #1939

merged 2 commits into from
Sep 10, 2020

Conversation

gaborbernat
Copy link
Contributor

No description provided.

Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
@codecov
Copy link

codecov bot commented Sep 10, 2020

Codecov Report

Merging #1939 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master    #1939   +/-   ##
=======================================
  Coverage   93.98%   93.98%           
=======================================
  Files          86       86           
  Lines        4225     4225           
=======================================
  Hits         3971     3971           
  Misses        254      254           
Flag Coverage Δ
#tests 93.98% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
src/virtualenv/app_data/via_disk_folder.py 84.54% <ø> (ø)
src/virtualenv/create/creator.py 96.06% <ø> (ø)
...nv/create/via_global_ref/builtin/cpython/mac_os.py 83.88% <ø> (ø)
...reate/via_global_ref/builtin/via_global_self_do.py 92.95% <ø> (ø)
src/virtualenv/create/via_global_ref/venv.py 93.33% <ø> (ø)
src/virtualenv/discovery/cached_py_info.py 94.79% <ø> (ø)
src/virtualenv/discovery/py_info.py 94.75% <ø> (ø)
src/virtualenv/run/__init__.py 95.77% <ø> (ø)
src/virtualenv/run/plugin/creators.py 93.87% <ø> (ø)
src/virtualenv/run/plugin/discovery.py 100.00% <ø> (ø)
... and 7 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update dc5eb79...f804c7b. Read the comment docs.

Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
@gaborbernat gaborbernat merged commit 13c0498 into pypa:master Sep 10, 2020
hugovk added a commit to hugovk/black that referenced this pull request Sep 10, 2020
cooperlees pushed a commit to psf/black that referenced this pull request Sep 10, 2020
clrpackages pushed a commit to clearlinux-pkgs/black that referenced this pull request Apr 27, 2021
….4b0

Abdullah Selek (1):
      Start using Python 3.9 on Travis (#1790)

Antek S (1):
      Update readme.md with current version (#1788)

Anthony Sottile (1):
      speed up cache by approximately 42x by avoiding pathlib (#1953)

Archit Gopal (1):
      add gedit integration (#1988)

Austin Pray (1):
      Adds --stdin-filename back to changelog (#2017)

Bibo-Joshi (1):
      Document some culprits with pre-commit (#1783)

Bryan Bugyi (7):
      Fix unstable formatting on string split + % formatting (#1680)
      Fix crash on concatenated string + comment (fixes #1596) (#1677)
      Fix crash on assert and parenthesized % format (fixes #1597, fixes #1605) (#1681)
      Fix unstable subscript assignment string wrapping (#1678)
      Fix bug where black tries to split string on escaped space (#1799)
      Fix bug which causes f-expressions to be split (#1809)
      Fix INTERNAL ERROR caused by removing parens from pointless string (#1888)

Casper Weiss Bang (1):
      Use lowercase hex numbers fixes #1692 (#1775)

Cha Gyuseok (1):
      docs: update `used-by` link to proper url (#1745)

CiderMan (1):
      Handle Docstrings as bytes + strip all whitespace (#2037)

Cooper Lees (10):
      Add blackd to nicely exit if missing aiohttp deps (#1761)
      Update Contributing Docs (#1915)
      Add a GitHub CHANGELOG/News Check (#2057)
      Add a GitHub Action to build + Upload black to PyPI (#1848)
      Add CONTRBUTING info about CHANGES.md requirement (#2073)
      Run lint in latest python + update precommit (#2081)
      Add `black` Dockerfile (#1916)
      Add Docker Github Action (#2086)
      Docker CI: Add missed Checkout step (#2128)
      Update CHANGES.md for release (#2129)

Daniel (1):
      Fix typo in docstring (#1700)

David W.H. Swenson (1):
      Fix GitHub markdown links to work on RTD (#1752)

Emilv2 (1):
      Fix typo (#1931)

Felix Hildén (2):
      Instructions on documenting code style modifications (#2109)
      Document experimental string processing and docstring indentation (#2106)

Hadi Alqattan (3):
      Support stable Python3.9. (#1748)
      Allow black's Github action params overriding. (#1755)
      Remove unused import statements using Pycln. (#2021)

Hakan Çelik (1):
      Fix unnecessary if checks (#1728)

Harish Rajagopal (1):
      Support for top-level user configuration (#1899)

Hugo van Kemenade (7):
      Test primer on Pillow (#1679)
      Virtualenv is now formatted with newest Black pypa/virtualenv#1939 (#1695)
      Hypothesis is now formatted with Black 20.8b1 (#1729)
      Primer: pyramid and sqlalchemy are now formatted with latest Black (#1736)
      As long as it's black (#1893)
      Bump typed-ast to fix for s390x (#1892)
      Black requires Python 3.6.2+ (#1668)

Jairo Llopis (1):
      Recommend B950 + 88 char limit instead of 80 (#2050)

Jakub Warczarek (1):
      Get rid of redundant spaces in docs (#2085)

James (1):
      Fix for enum changes in 3.10 (#1999)

James Addison (16):
      Remove placeholder exit code in unreachable 'black-primer' subprocess handler (#1952)
      Regenerate documentation (#1980)
      Stability fixup: interaction between newlines and comments (#1975)
      fuzzer: add special-case for multi-line EOF TokenError (#1991)
      Brevity: rename method
      Clarity: isolate and extract each responsibility from an overloaded variable
      Brevity: only use the variables required to convey the intended expressions
      Consistency: use variable names that correspond to the methods they invoke
      Clarity: special case: avoid using variables that have the same names as methods
      Simplification: only use special-case token retrieval logic when magic trailing comma is present
      Simplification: only yield empty omit list when magic trailing comma is present
      Cleanup: remove unused / redundant variables from conditionals
      Readability: reduce boolean nesting
      Minimize changes: more closely resemble original conditional logic
      Fixup: update function name in docs to match source (#1997)
      Fuzzer testing: less strict special-case regex match passthrough for multi-line EOF exceptions (#1998)

Jelle Zijlstra (2):
      Fix error from upcoming typeshed change (#2096)
      fix typing issue around lru_cache arguments (#2098)

John Meow (1):
      Add ALE (#1753)

Jon Dufresne (3):
      Remove flake8 W503 from docs as it is ignored by default (#1661)
      Add pyi file support to .pre-commit-hooks.yaml (#1875)
      Bump minimum_pre_commit_version per recommendation (#1895)

Joshua Cannon (2):
      Add --extend-exclude parameter (#2005)
      Turn test_regex into a click callback (#2016)

Justin Prieto (1):
      Correctly handle inline tabs in docstrings (#1810)

Konstantin Alekseev (1):
      Use vim autoload script (#1157)

KotlinIsland (1):
      don't require typed-ast

Laurent Tréguier (1):
      Fix small comment typo (#2112)

Mark Bell (2):
      GREP for PR reference accepts references that are split over a line (#2072)
      Make black remove leading and trailing spaces from one-line docstrings (#1740)

Michael Wilkinson (1):
      Add link to conda-forge integration (#1687)

Noel Evans (1):
      vim plugin: Add quiet flag so non-error actions go unreported (#1733)

Oliver Newman (1):
      Update example exclude to match only files in root (#1861)

Paul "TBBle" Hampson (2):
      Use Prettier pre-commit mirror (#1896)
      Indicate that a final newline was added in --diff (#1897) (#1897)

Pete Grayson (1):
      Repair colorama wrapping on non-Windows platforms (#1670)

Peter Stensmyr (1):
      Update link pointing to how-black-wraps-lines (#1925)

Pierre Sassoulas (1):
      Remove NBSP at the beginning of comments (#2092)

Pierre Verkest (1):
      Add missing instructions to make test passed (#2100)

QuentinSoubeyran (1):
      PEP 614 support (#1717)

Richard Si (16):
      Fix multiline docstring quote normalization
      Fix incorrect space before colon in if/while stmts (#1655)
      Update primer.json to reflect Black's adoption (#1674)
      Fix empty line handling when formatting typing stubs (#1646)
      Automatically build and upload binaries on release (#1743)
      Allow same RHS expressions in annotated assignments as in regular assignments (#1835)
      Switch back to Python 3.8 for ReadTheDocs (#1839)
      Fuzz on Python 3.9 too (#1882)
      Bump mypy to 0.780 in pre-commit config (#1887)
      Update prettier in pre-commit config (#1966)
      Fix duplication of checks on internal PRs (#1986)
      Add missing changelog entry for fmt: skip (#2025)
      Fix indentation in docs/editor_integration.md (#2056)
      Add entry for `--extend-exclude` in the right place (#2061)
      Push contributors to use Next PR Number (#2080)
      Issue 1629 has been closed, let's celebrate! (#2127)

Rick Staa (1):
      Release gh action (#1909)

Rishav Kundu (1):
      Strip redundant parentheses from assignment exprs (#1906)

Romain Rigaux (1):
      Use 'args' to Avoid GH workflow warning (#1990)

Rowan Rodrik van der Molen (1):
      Fix g:black_fast and g:black_(skip)_string_normalization opts

Sagi Shadur (3):
      Switch to pytest and tox (#1763)
      Extract formatting tests (#1785)
      Add "# fmt: skip" directive to black (#1800)

Shantanu (3):
      Remove all trace of flake8-mypy (#1867)
      Add --skip-magic-trailing-comma (#1824)
      Add `--skip-magic-trailing-comma` to CHANGES.md (#2064)

Shota Ray Imaki (2):
      Add compatible configuration files. (psf#1789) (#1792)
      fix #1917 (#1918)

Simon (1):
      Added not formatting files in gitignore (psf#1682) (#1734)

Taneli Hukkinen (1):
      Only require typing-extensions if Python < 3.8 (#1873)

Thiago Bellini Ribeiro (1):
      Provide a stdin-filename to allow stdin to respect force-exclude rules (#1780)

Thomas Hagebols (1):
      Set gh action entrypoint interpreter to bash (#1919)

Tom Saunders (1):
      Handle .COLOR_DIFF in the same way as .DIFF (#1673)

Tristan Seligmann (1):
      Fix typo in comment (#1650)

Troy Murray (1):
      Changed max workers on windows to 60 (#1912)

Utkarsh Gupta (1):
      Add formatters-python for atom to editor_integration (#1834)

Vipul (1):
      End 'force-exclude' help message with a period (#1727)

Yurii Karabas (3):
      Simplify black code by using generator expressions
      Revert contains_standalone_comments function changes
      Revert contains_pragma_comment function changes

Zac Hatfield-Dodds (1):
      OSS-Fuzz integration (#1930)

dependabot[bot] (6):
      Bump cryptography from 3.1 to 3.2 (#1791)
      Bump bleach from 3.2.1 to 3.3.0 (#1957)
      Bump cryptography from 3.3.1 to 3.3.2 (#1981)
      Bump aiohttp from 3.7.3 to 3.7.4 (#2009)
      Bump pygments from 2.6.1 to 2.7.4 in /docs (#2076)
      Bump urllib3 from 1.26.3 to 1.26.4 (#2090)

johnthagen (2):
      Update PyCharm integrations instructions to avoid running on external changes (#1769)
      Exclude venv directory by default (#1683)

mbarkhau (1):
      fix 1631 and add test (#1641)

nikkie (1):
      fix format_str() docstring to prevent users from running into NameError (#1885)

rht (1):
      readme: Include Zulip in used-by section (#1987)

tpilewicz (1):
      Wrap arithmetic and binary arithmetic expressions in invisible parentheses (#2001)

Łukasz Langa (7):
      Stop running Primer on macOS as it's flaky on GitHub Actions
      Mention optional invalid W503 warning in pycodestyle
      Clarify current trailing comma behavior in the docs
      Revert "Use lowercase hex numbers fixes #1692 (#1775)"
      Re-add .venv to .gitignore
      Fix primer config
      Work around stability errors due to optional trailing commas (#2126)
noxan pushed a commit to noxan/black that referenced this pull request Jun 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant