Skip to content

Commit c708854

Browse files
mroeschketopper-123
authored andcommitted
CLN: Assorted (pandas-dev#53356)
* Fix hyperlink * simplify is_hashable * Remove unnecessary variable * Add a conda forge * Fix link rendering * Fix more links * Revert "simplify is_hashable" This reverts commit 3792cde.
1 parent 2a65921 commit c708854

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

.circleci/config.yml

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ jobs:
2626
image: ubuntu-2004:2022.04.1
2727
resource_class: arm.large
2828
environment:
29-
ENV_FILE: ci/deps/circle-38-arm64.yaml
3029
TRIGGER_SOURCE: << pipeline.trigger_source >>
3130
steps:
3231
- checkout

doc/source/development/contributing_codebase.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ install pandas) by typing::
770770
your installation is probably fine and you can start contributing!
771771

772772
Often it is worth running only a subset of tests first around your changes before running the
773-
entire suite (tip: you can use the [pandas-coverage app](https://pandas-coverage.herokuapp.com/)
773+
entire suite (tip: you can use the [pandas-coverage app](https://pandas-coverage.herokuapp.com/))
774774
to find out which tests hit the lines of code you've modified, and then run only those).
775775

776776
The easiest way to do this is with::

doc/source/getting_started/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Installation
2424

2525
.. code-block:: bash
2626
27-
conda install pandas
27+
conda install -c conda-forge pandas
2828
2929
.. grid-item-card:: Prefer pip?
3030
:class-card: install-card

web/pandas/community/ecosystem.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ target values with cutoff times that can be used for supervised learning.
5858

5959
STUMPY is a powerful and scalable Python library for modern time series analysis.
6060
At its core, STUMPY efficiently computes something called a
61-
`matrix profile <https://stumpy.readthedocs.io/en/latest/Tutorial_The_Matrix_Profile.html>`__,
61+
[matrix profile](https://stumpy.readthedocs.io/en/latest/Tutorial_The_Matrix_Profile.html),
6262
which can be used for a wide variety of time series data mining tasks.
6363

6464
## Visualization
@@ -177,7 +177,7 @@ D-Tale integrates seamlessly with Jupyter notebooks, Python terminals, Kaggle
177177

178178
### [hvplot](https://hvplot.holoviz.org/index.html)
179179

180-
hvPlot is a high-level plotting API for the PyData ecosystem built on `HoloViews <https://holoviews.org/>`__.
180+
hvPlot is a high-level plotting API for the PyData ecosystem built on [HoloViews](https://holoviews.org/).
181181
It can be loaded as a native pandas plotting backend via
182182

183183
```python
@@ -207,8 +207,7 @@ are utilized by Jupyter Notebook for displaying (abbreviated) HTML or
207207
LaTeX tables. LaTeX output is properly escaped. (Note: HTML tables may
208208
or may not be compatible with non-HTML Jupyter output formats.)
209209

210-
See `Options and Settings <options>` and
211-
`Available Options <options.available>`
210+
See [Options and Settings](https://pandas.pydata.org/docs/user_guide/options.html)
212211
for pandas `display.` settings.
213212

214213
### [quantopian/qgrid](https://github.com/quantopian/qgrid)
@@ -355,7 +354,7 @@ Rigorously tested, it is a complete replacement for ``df.to_sql``.
355354
### [Deltalake](https://pypi.org/project/deltalake)
356355

357356
Deltalake python package lets you access tables stored in
358-
`Delta Lake <https://delta.io/>`__ natively in Python without the need to use Spark or
357+
[Delta Lake](https://delta.io/) natively in Python without the need to use Spark or
359358
JVM. It provides the ``delta_table.to_pyarrow_table().to_pandas()`` method to convert
360359
any Delta table into Pandas dataframe.
361360

@@ -510,8 +509,8 @@ assumptions about your datasets and check that they're *actually* true.
510509
## Extension data types
511510

512511
Pandas provides an interface for defining
513-
`extension types <extending.extension-types>` to extend NumPy's type system. The following libraries
514-
implement that interface to provide types not found in NumPy or pandas,
512+
[extension types](https://pandas.pydata.org/docs/development/extending.html#extension-types) to extend NumPy's type system.
513+
The following librariesimplement that interface to provide types not found in NumPy or pandas,
515514
which work well with pandas' data containers.
516515

517516
### [cyberpandas](https://cyberpandas.readthedocs.io/en/latest)
@@ -540,7 +539,8 @@ Text Extensions for Pandas provides extension types to cover common data structu
540539
## Accessors
541540

542541
A directory of projects providing
543-
`extension accessors <extending.register-accessors>`. This is for users to discover new accessors and for library
542+
[extension accessors](https://pandas.pydata.org/docs/development/extending.html#registering-custom-accessors).
543+
This is for users to discover new accessors and for library
544544
authors to coordinate on the namespace.
545545

546546
| Library | Accessor | Classes |

0 commit comments

Comments
 (0)