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
Copy file name to clipboardExpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -225,7 +225,7 @@ Most development discussion is taking place on github in this repo. Further, the
225
225
226
226
All contributions, bug reports, bug fixes, documentation improvements, enhancements and ideas are welcome.
227
227
228
-
A detailed overview on how to contribute can be found in the **[contributing guide](https://dev.pandas.io/contributing.html)**. There is also an [overview](.github/CONTRIBUTING.md) on GitHub.
228
+
A detailed overview on how to contribute can be found in the **[contributing guide](https://dev.pandas.io/docs/contributing.html)**. There is also an [overview](.github/CONTRIBUTING.md) on GitHub.
229
229
230
230
If you are simply looking to start working with the pandas codebase, navigate to the [GitHub "issues" tab](https://github.com/pandas-dev/pandas/issues) and start looking through interesting issues. There are a number of issues listed under [Docs](https://github.com/pandas-dev/pandas/issues?labels=Docs&sort=updated&state=open) and [good first issue](https://github.com/pandas-dev/pandas/issues?labels=good+first+issue&sort=updated&state=open) where you could start out.
Copy file name to clipboardExpand all lines: azure-pipelines.yml
+17-6
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ jobs:
104
104
displayName: 'Running benchmarks'
105
105
condition: true
106
106
107
-
- job: 'Docs'
107
+
- job: 'Web_and_Docs'
108
108
pool:
109
109
vmImage: ubuntu-16.04
110
110
timeoutInMinutes: 90
@@ -119,6 +119,11 @@ jobs:
119
119
ci/setup_env.sh
120
120
displayName: 'Setup environment and build pandas'
121
121
122
+
- script: |
123
+
source activate pandas-dev
124
+
python web/pandas_web.py web/pandas
125
+
displayName: 'Build website'
126
+
122
127
- script: |
123
128
source activate pandas-dev
124
129
# Next we should simply have `doc/make.py --warnings-are-errors`, everything else is required because the ipython directive doesn't fail the build on errors (https://github.com/ipython/ipython/issues/11547)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.16.0.rst
+2-4
Original file line number
Diff line number
Diff line change
@@ -91,8 +91,7 @@ Interaction with scipy.sparse
91
91
92
92
Added :meth:`SparseSeries.to_coo` and :meth:`SparseSeries.from_coo` methods (:issue:`8048`) for converting to and from ``scipy.sparse.coo_matrix`` instances (see :ref:`here <sparse.scipysparse>`). For example, given a SparseSeries with MultiIndex we can convert to a `scipy.sparse.coo_matrix` by specifying the row and column labels as index levels:
93
93
94
-
.. ipython:: python
95
-
:okwarning:
94
+
.. code-block:: python
96
95
97
96
s = pd.Series([3.0, np.nan, 1.0, 3.0, np.nan, np.nan])
0 commit comments