File tree Expand file tree Collapse file tree 5 files changed +3
-5
lines changed Expand file tree Collapse file tree 5 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -287,5 +287,4 @@ repos:
287
287
language : python
288
288
additional_dependencies :
289
289
- autotyping==22.9.0
290
- - black==22.6.0
291
290
- libcst==0.4.7
Original file line number Diff line number Diff line change 1
1
.. _whatsnew_152 :
2
2
3
- What's new in 1.5.2 (November ?? , 2022)
3
+ What's new in 1.5.2 (November 21 , 2022)
4
4
---------------------------------------
5
5
6
6
These are the changes in pandas 1.5.2. See :ref: `release ` for a full changelog
@@ -38,7 +38,6 @@ Bug fixes
38
38
Other
39
39
~~~~~
40
40
- Reverted ``color `` as an alias for ``c `` and ``size `` as an alias for ``s `` in function :meth: `DataFrame.plot.scatter ` (:issue: `49732 `)
41
- -
42
41
43
42
.. ---------------------------------------------------------------------------
44
43
.. _whatsnew_152.contributors :
Original file line number Diff line number Diff line change 69
69
# `import PyQt4` sys.exit()s if DISPLAY is not in the environment.
70
70
# Thus, we need to detect the presence of $DISPLAY manually
71
71
# and not load PyQt4 if it is absent.
72
- HAS_DISPLAY = os .getenv ("DISPLAY" , False )
72
+ HAS_DISPLAY = os .getenv ("DISPLAY" )
73
73
74
74
EXCEPT_MSG = """
75
75
Pyperclip could not find a copy/paste mechanism for your system.
Original file line number Diff line number Diff line change @@ -130,7 +130,6 @@ disable = [
130
130
" expression-not-assigned" ,
131
131
" fixme" ,
132
132
" global-statement" ,
133
- " invalid-envvar-default" ,
134
133
" invalid-overridden-method" ,
135
134
" keyword-arg-before-vararg" ,
136
135
" non-parent-init-called" ,
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ def main(argv: Sequence[str] | None = None) -> None:
27
27
"autotyping.AutotypeCommand" ,
28
28
* args .paths ,
29
29
"--aggressive" ,
30
+ "--no-format" ,
30
31
],
31
32
check = True ,
32
33
)
You can’t perform that action at this time.
0 commit comments