Skip to content

Commit a3e7ba2

Browse files
committed
fix code checks
1 parent 9c63bb1 commit a3e7ba2

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

doc/source/development/contributing_environment.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -244,19 +244,19 @@ At this point you should be able to import pandas from your locally built versio
244244
>>> print(pandas.__version__) # note: the exact output may differ
245245
2.0.0.dev0+880.g2b9e661fbb.dirty
246246

247-
When building pandas with meson, importing pandas will automatically trigger a rebuild, even when C/Cython files are modified.
248-
By default, no output will be produced by this rebuild (the import will just take longer). If you would like to see meson's
247+
When building pandas with meson, importing pandas will automatically trigger a rebuild, even when C/Cython files are modified.
248+
By default, no output will be produced by this rebuild (the import will just take longer). If you would like to see meson's
249249
output when importing pandas, you can set the environment variable ``MESONPY_EDTIABLE_VERBOSE``. For example, this would be::
250250

251251
# On Linux/macOS
252252
MESONPY_EDITABLE_VERBOSE=1 python
253-
253+
254254
# Windows
255255
set MESONPY_EDITABLE_VERBOSE=1 # Only need to set this once per session
256256
python
257257

258258
If you would like to see this verbose output every time, you can set the ``editable-verbose`` config setting to ``true`` like so::
259-
259+
260260
python -m pip install -ve . --config-settings editable-verbose=true
261261

262262
.. tip::

scripts/validate_unwanted_patterns.py

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"_testing",
5252
"_test_decorators",
5353
"__version__", # check np.__version__ in compat.numpy.function
54+
"__git_version__",
5455
"_arrow_dtype_mapping",
5556
}
5657

0 commit comments

Comments
 (0)