Skip to content
This repository was archived by the owner on Jun 5, 2020. It is now read-only.

Commit 7476a8a

Browse files
committed
MAINT: change website to altair-viz.github.io/
1 parent 8d47e78 commit 7476a8a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using an API that is nearly identical to Pandas' built-in
99
[visualization tools](https://pandas.pydata.org/pandas-docs/stable/visualization.html), and designed for easy use within the [Jupyter notebook](http://jupyter.org).
1010

11-
- [Full Documentation](http://jakevdp.github.io/pdvega/)
11+
- [Full Documentation](http://altair-viz.github.io/pdvega/)
1212

1313
Pandas currently has some basic plotting capabilities based on
1414
[matplotlib](http://matplotlib.org). So, for example, you can create
@@ -37,7 +37,7 @@ df.vgplot.scatter(x='x', y='y')
3737
![vega-lite scatter output](images/vg-scatter.png?raw=true)
3838

3939
The above image is a static screenshot of the interactive output; please see the
40-
[Documentation](http://jakevdp.github.io/pdvega/) for a full set of live
40+
[Documentation](http://altair-viz.github.io/pdvega/) for a full set of live
4141
usage examples.
4242

4343
## Installation
@@ -52,7 +52,7 @@ $ jupyter nbextension install --sys-prefix --py vega3
5252
The first line installs ``pdvega`` and its dependencies; the second installs
5353
the Jupyter extensions that allows plots to be displayed in the Jupyter
5454
notebook. For more information on installation and dependencies, see the
55-
[Installation docs](https://jakevdp.github.io/pdvega/installation.html).
55+
[Installation docs](https://altair-viz.github.io/pdvega/installation.html).
5656

5757
## Why Vega-Lite?
5858
When working with data, one of the biggest challenges is ensuring reproducibility of results.

doc/sync_website.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# clean the build directory & make the website with the right internal addresses
44
make clean
5-
sphinx-build -M html . _build -D pdvegaplot_url_root="https://jakevdp.github.io/pdvega/"
5+
sphinx-build -M html . _build -D pdvegaplot_url_root="https://altair-viz.github.io/pdvega/"
66

77
# get git hash for commit message
88
GITHASH=$(git rev-parse HEAD)

examples/pdvega_example.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3063,7 +3063,7 @@
30633063
"source": [
30643064
"## Learning More\n",
30653065
"\n",
3066-
"Hopefully this whets your appetite for the types of plots you can make in Vega-Lite. For more information on the pdvega package, please see the documentation at http://jakevdp.github.io/pdvega/."
3066+
"Hopefully this whets your appetite for the types of plots you can make in Vega-Lite. For more information on the pdvega package, please see the documentation at http://altair-viz.github.io/pdvega/."
30673067
]
30683068
}
30693069
],

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ def version(path):
2727
LONG_DESCRIPTION = """
2828
pdvega makes it easy to create Vega-Lite plots from pandas dataframes,
2929
using the familiar pandas visualization API. For more information, see
30-
the `pdvega documentation <http://jakevdp.github.io/pdvega/>`_.
30+
the `pdvega documentation <http://altair-viz.github.io/pdvega/>`_.
3131
"""
3232
NAME = "pdvega"
3333
AUTHOR = "Jake VanderPlas"
3434
AUTHOR_EMAIL = "[email protected]"
3535
MAINTAINER = "Jake VanderPlas"
3636
MAINTAINER_EMAIL = "[email protected]"
37-
URL = 'http://jakevdp.github.io/pdvega/'
37+
URL = 'http://altair-viz.github.io/pdvega/'
3838
DOWNLOAD_URL = 'http://github.com/jakevdp/pdvega/'
3939
LICENSE = 'MIT'
4040

0 commit comments

Comments
 (0)