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
If you have `make`, you can also use `make develop` to run the same command.
197
+
198
+
or alternatively
198
199
199
200
```sh
200
-
pip install -e .
201
+
python setup.py develop
201
202
```
202
203
203
204
See the full instructions for [installing from source](https://pandas.pydata.org/pandas-docs/stable/install.html#installing-from-source).
@@ -224,7 +225,7 @@ Most development discussion is taking place on github in this repo. Further, the
224
225
225
226
All contributions, bug reports, bug fixes, documentation improvements, enhancements and ideas are welcome.
226
227
227
-
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.
228
229
229
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.
# 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)
@@ -128,15 +133,21 @@ jobs:
128
133
displayName: 'Build documentation'
129
134
130
135
- script: |
131
-
cd doc/build/html
136
+
mkdir -p to_deploy/docs
137
+
cp -r web/build/* to_deploy/
138
+
cp -r doc/build/html/* to_deploy/docs/
139
+
displayName: 'Merge website and docs'
140
+
141
+
- script: |
142
+
cd to_deploy
132
143
git init
133
144
touch .nojekyll
134
145
echo "dev.pandas.io" > CNAME
135
146
printf "User-agent: *\nDisallow: /" > robots.txt
136
147
git add --all .
137
148
git config user.email "pandas-dev@python.org"
138
-
git config user.name "pandas-docs-bot"
139
-
git commit -m "pandas documentation in master"
149
+
git config user.name "pandas-bot"
150
+
git commit -m "pandas web and documentation in master"
0 commit comments