You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This creates the directory `pandas-yourname` and connects your repository to
136
+
This creates the directory ``pandas-yourname`` and connects your repository to
137
137
the upstream (main project) *pandas* repository.
138
138
139
139
Note that performing a shallow clone (with ``--depth==N``, for some ``N`` greater
@@ -155,12 +155,12 @@ Using a Docker container
155
155
156
156
Instead of manually setting up a development environment, you can use `Docker
157
157
<https://docs.docker.com/get-docker/>`_ to automatically create the environment with just several
158
-
commands. Pandas provides a `DockerFile` in the root directory to build a Docker image
158
+
commands. Pandas provides a ``DockerFile`` in the root directory to build a Docker image
159
159
with a full pandas development environment.
160
160
161
161
**Docker Commands**
162
162
163
-
Pass your GitHub username in the `DockerFile` to use your own fork::
163
+
Pass your GitHub username in the ``DockerFile`` to use your own fork::
164
164
165
165
# Build the image pandas-yourname-env
166
166
docker build --tag pandas-yourname-env .
@@ -172,7 +172,7 @@ Even easier, you can integrate Docker with the following IDEs:
172
172
**Visual Studio Code**
173
173
174
174
You can use the DockerFile to launch a remote session with Visual Studio Code,
175
-
a popular free IDE, using the `.devcontainer.json` file.
175
+
a popular free IDE, using the ``.devcontainer.json`` file.
176
176
See https://code.visualstudio.com/docs/remote/containers for details.
177
177
178
178
**PyCharm (Professional)**
@@ -782,7 +782,7 @@ As part of :ref:`Continuous Integration <contributing.ci>` checks we run::
782
782
783
783
isort --check-only pandas
784
784
785
-
to check that imports are correctly formatted as per the `setup.cfg`.
785
+
to check that imports are correctly formatted as per the ``setup.cfg``.
786
786
787
787
If you see output like the below in :ref:`Continuous Integration <contributing.ci>` checks:
788
788
@@ -979,7 +979,7 @@ For example, quite a few functions in pandas accept a ``dtype`` argument. This c
979
979
defas_type(dtype: Dtype) -> ...:
980
980
...
981
981
982
-
This module will ultimately house types for repeatedly used concepts like "path-like", "array-like", "numeric", etc... and can also hold aliases for commonly appearing parameters like `axis`. Development of this module is active so be sure to refer to the source for the most up to date list of available types.
982
+
This module will ultimately house types for repeatedly used concepts like "path-like", "array-like", "numeric", etc... and can also hold aliases for commonly appearing parameters like ``axis``. Development of this module is active so be sure to refer to the source for the most up to date list of available types.
983
983
984
984
Validating type hints
985
985
~~~~~~~~~~~~~~~~~~~~~
@@ -1302,7 +1302,7 @@ Or with one of the following constructs::
1302
1302
1303
1303
Using `pytest-xdist <https://pypi.org/project/pytest-xdist>`_, one can
1304
1304
speed up local testing on multicore machines. To use this feature, you will
1305
-
need to install `pytest-xdist` via::
1305
+
need to install ``pytest-xdist`` via::
1306
1306
1307
1307
pip install pytest-xdist
1308
1308
@@ -1465,7 +1465,7 @@ The following defines how a commit message should be structured. Please referen
1465
1465
relevant GitHub issues in your commit message using GH1234 or #1234. Either style
0 commit comments