Skip to content

Commit aeb6669

Browse files
committed
Merge remote-tracking branch 'upstream/main' into issue49649
2 parents 05864f7 + be79267 commit aeb6669

File tree

5 files changed

+3
-5
lines changed

5 files changed

+3
-5
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,5 +287,4 @@ repos:
287287
language: python
288288
additional_dependencies:
289289
- autotyping==22.9.0
290-
- black==22.6.0
291290
- libcst==0.4.7

doc/source/whatsnew/v1.5.2.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.. _whatsnew_152:
22

3-
What's new in 1.5.2 (November ??, 2022)
3+
What's new in 1.5.2 (November 21, 2022)
44
---------------------------------------
55

66
These are the changes in pandas 1.5.2. See :ref:`release` for a full changelog
@@ -38,7 +38,6 @@ Bug fixes
3838
Other
3939
~~~~~
4040
- Reverted ``color`` as an alias for ``c`` and ``size`` as an alias for ``s`` in function :meth:`DataFrame.plot.scatter` (:issue:`49732`)
41-
-
4241

4342
.. ---------------------------------------------------------------------------
4443
.. _whatsnew_152.contributors:

pandas/io/clipboard/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
# `import PyQt4` sys.exit()s if DISPLAY is not in the environment.
7070
# Thus, we need to detect the presence of $DISPLAY manually
7171
# and not load PyQt4 if it is absent.
72-
HAS_DISPLAY = os.getenv("DISPLAY", False)
72+
HAS_DISPLAY = os.getenv("DISPLAY")
7373

7474
EXCEPT_MSG = """
7575
Pyperclip could not find a copy/paste mechanism for your system.

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ disable = [
130130
"expression-not-assigned",
131131
"fixme",
132132
"global-statement",
133-
"invalid-envvar-default",
134133
"invalid-overridden-method",
135134
"keyword-arg-before-vararg",
136135
"non-parent-init-called",

scripts/run_autotyping.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def main(argv: Sequence[str] | None = None) -> None:
2727
"autotyping.AutotypeCommand",
2828
*args.paths,
2929
"--aggressive",
30+
"--no-format",
3031
],
3132
check=True,
3233
)

0 commit comments

Comments
 (0)