Skip to content

Commit 7a2bcb6

Browse files
dhimmeljorisvandenbossche
authored andcommitted
DOC: Update GitHub org from pydata to pandas-dev (#14575)
Revert pydata/pandas-datareader references
1 parent e1cdc4b commit 7a2bcb6

14 files changed

+31
-31
lines changed

.github/CONTRIBUTING.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Where to start?
66

77
All contributions, bug reports, bug fixes, documentation improvements, enhancements and ideas are welcome.
88

9-
If you are simply looking to start working with the *pandas* codebase, navigate to the [GitHub "issues" tab](https://github.com/pydata/pandas/issues) and start looking through interesting issues. There are a number of issues listed under [Docs](https://github.com/pydata/pandas/issues?labels=Docs&sort=updated&state=open) and [Difficulty Novice](https://github.com/pydata/pandas/issues?q=is%3Aopen+is%3Aissue+label%3A%22Difficulty+Novice%22) where you could start out.
9+
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 [Difficulty Novice](https://github.com/pandas-dev/pandas/issues?q=is%3Aopen+is%3Aissue+label%3A%22Difficulty+Novice%22) where you could start out.
1010

1111
Or maybe through using *pandas* you have an idea of you own or are looking for something in the documentation and thinking 'this can be improved'...you can do something about it!
1212

@@ -49,7 +49,7 @@ Now that you have an issue you want to fix, enhancement to add, or documentation
4949

5050
To the new user, working with Git is one of the more daunting aspects of contributing to *pandas*. It can very quickly become overwhelming, but sticking to the guidelines below will help keep the process straightforward and mostly trouble free. As always, if you are having difficulties please feel free to ask for help.
5151

52-
The code is hosted on [GitHub](https://www.github.com/pydata/pandas). To contribute you will need to sign up for a [free GitHub account](https://github.com/signup/free). We use [Git](http://git-scm.com/) for version control to allow many people to work together on the project.
52+
The code is hosted on [GitHub](https://www.github.com/pandas-dev/pandas). To contribute you will need to sign up for a [free GitHub account](https://github.com/signup/free). We use [Git](http://git-scm.com/) for version control to allow many people to work together on the project.
5353

5454
Some great resources for learning Git:
5555

@@ -63,11 +63,11 @@ Some great resources for learning Git:
6363

6464
### Forking
6565

66-
You will need your own fork to work on the code. Go to the [pandas project page](https://github.com/pydata/pandas) and hit the `Fork` button. You will want to clone your fork to your machine:
66+
You will need your own fork to work on the code. Go to the [pandas project page](https://github.com/pandas-dev/pandas) and hit the `Fork` button. You will want to clone your fork to your machine:
6767

6868
git clone [email protected]:your-user-name/pandas.git pandas-yourname
6969
cd pandas-yourname
70-
git remote add upstream git://github.com/pydata/pandas.git
70+
git remote add upstream git://github.com/pandas-dev/pandas.git
7171

7272
This creates the directory pandas-yourname and connects your repository to the upstream (main project) *pandas* repository.
7373

@@ -268,7 +268,7 @@ and make these changes with:
268268

269269
pep8radius master --diff --in-place
270270

271-
Alternatively, use the [flake8](http://pypi.python.org/pypi/flake8) tool for checking the style of your code. Additional standards are outlined on the [code style wiki page](https://github.com/pydata/pandas/wiki/Code-Style-and-Conventions).
271+
Alternatively, use the [flake8](http://pypi.python.org/pypi/flake8) tool for checking the style of your code. Additional standards are outlined on the [code style wiki page](https://github.com/pandas-dev/pandas/wiki/Code-Style-and-Conventions).
272272

273273
Please try to maintain backward compatibility. *pandas* has lots of users with lots of existing code, so don't break it if at all possible. If you think breakage is required, clearly state why as part of the pull request. Also, be careful when changing method signatures and add deprecation warnings where needed.
274274

@@ -282,7 +282,7 @@ Like many packages, *pandas* uses the [Nose testing system](https://nose.readthe
282282

283283
#### Writing tests
284284

285-
All tests should go into the `tests` subdirectory of the specific package. This folder contains many current examples of tests, and we suggest looking to these for inspiration. If your test requires working with files or network connectivity, there is more information on the [testing page](https://github.com/pydata/pandas/wiki/Testing) of the wiki.
285+
All tests should go into the `tests` subdirectory of the specific package. This folder contains many current examples of tests, and we suggest looking to these for inspiration. If your test requires working with files or network connectivity, there is more information on the [testing page](https://github.com/pandas-dev/pandas/wiki/Testing) of the wiki.
286286

287287
The `pandas.util.testing` module has many special `assert` functions that make it easier to make statements about whether Series or DataFrame objects are equivalent. The easiest way to verify that your code is correct is to explicitly construct the result you expect, then compare the actual result to the expected correct result:
288288

@@ -378,7 +378,7 @@ This will check out the master revision and run the suite on both master and you
378378

379379
You can run specific benchmarks using the `-r` flag, which takes a regular expression.
380380

381-
See the [performance testing wiki](https://github.com/pydata/pandas/wiki/Performance-Testing) for information on how to write a benchmark.
381+
See the [performance testing wiki](https://github.com/pandas-dev/pandas/wiki/Performance-Testing) for information on how to write a benchmark.
382382

383383
### Documenting your code
384384

@@ -390,7 +390,7 @@ If your code is an enhancement, it is most likely necessary to add usage example
390390
.. versionadded:: 0.17.0
391391
```
392392

393-
This will put the text *New in version 0.17.0* wherever you put the sphinx directive. This should also be put in the docstring when adding a new function or method ([example](https://github.com/pydata/pandas/blob/v0.16.2/pandas/core/generic.py#L1959)) or a new keyword argument ([example](https://github.com/pydata/pandas/blob/v0.16.2/pandas/core/frame.py#L1171)).
393+
This will put the text *New in version 0.17.0* wherever you put the sphinx directive. This should also be put in the docstring when adding a new function or method ([example](https://github.com/pandas-dev/pandas/blob/v0.16.2/pandas/core/generic.py#L1959)) or a new keyword argument ([example](https://github.com/pandas-dev/pandas/blob/v0.16.2/pandas/core/frame.py#L1171)).
394394

395395
Contributing your changes to *pandas*
396396
-------------------------------------
@@ -466,8 +466,8 @@ If you added the upstream repository as described above you will see something l
466466

467467
origin [email protected]:yourname/pandas.git (fetch)
468468
origin [email protected]:yourname/pandas.git (push)
469-
upstream git://github.com/pydata/pandas.git (fetch)
470-
upstream git://github.com/pydata/pandas.git (push)
469+
upstream git://github.com/pandas-dev/pandas.git (fetch)
470+
upstream git://github.com/pandas-dev/pandas.git (push)
471471

472472
Now your code is on GitHub, but it is not yet a part of the *pandas* project. For that to happen, a pull request needs to be submitted on GitHub.
473473

RELEASE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Release Notes
33

44
The list of changes to pandas between each release can be found
55
[here](http://pandas.pydata.org/pandas-docs/stable/whatsnew.html). For full
6-
details, see the commit logs at http://github.com/pydata/pandas.
6+
details, see the commit logs at http://github.com/pandas-dev/pandas.

asv_bench/asv.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"environment_type": "conda",
2222

2323
// the base URL to show a commit for the project.
24-
"show_commit_url": "https://github.com/pydata/pandas/commit/",
24+
"show_commit_url": "https://github.com/pandas-dev/pandas/commit/",
2525

2626
// The Pythons you'd like to test against. If not provided, defaults
2727
// to the current version of Python used to run `asv`.

doc/source/contributing.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ about it!
2727

2828
Feel free to ask questions on the `mailing list
2929
<https://groups.google.com/forum/?fromgroups#!forum/pydata>`_ or on `Gitter
30-
<https://gitter.im/pandas-dev/pandas>`_.
30+
<https://gitter.im/pydata/pandas>`_.
3131

3232
Bug reports and enhancement requests
3333
====================================

doc/source/html-styling.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"source": [
77
"*New in version 0.17.1*\n",
88
"\n",
9-
"<p style=\"color: red\">*Provisional: This is a new feature and still under development. We'll be adding features and possibly making breaking changes in future releases. We'd love to hear your [feedback](https://github.com/pydata/pandas/issues).*<p style=\"color: red\">\n",
9+
"<p style=\"color: red\">*Provisional: This is a new feature and still under development. We'll be adding features and possibly making breaking changes in future releases. We'd love to hear your [feedback](https://github.com/pandas-dev/pandas/issues).*<p style=\"color: red\">\n",
1010
"\n",
11-
"This document is written as a Jupyter Notebook, and can be viewed or downloaded [here](http://nbviewer.ipython.org/github/pydata/pandas/blob/master/doc/source/html-styling.ipynb).\n",
11+
"This document is written as a Jupyter Notebook, and can be viewed or downloaded [here](http://nbviewer.ipython.org/github/pandas-dev/pandas/blob/master/doc/source/html-styling.ipynb).\n",
1212
"\n",
1313
"You can apply **conditional formatting**, the visual styling of a DataFrame\n",
1414
"depending on the data within, by using the ``DataFrame.style`` property.\n",

doc/source/index.rst.template

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ pandas: powerful Python data analysis toolkit
1414

1515
**Binary Installers:** http://pypi.python.org/pypi/pandas
1616

17-
**Source Repository:** http://github.com/pydata/pandas
17+
**Source Repository:** http://github.com/pandas-dev/pandas
1818

19-
**Issues & Ideas:** https://github.com/pydata/pandas/issues
19+
**Issues & Ideas:** https://github.com/pandas-dev/pandas/issues
2020

2121
**Q&A Support:** http://stackoverflow.com/questions/tagged/pandas
2222

doc/source/remote_data.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ DataReader
1313

1414
The sub-package ``pandas.io.data`` is removed in favor of a separately
1515
installable `pandas-datareader package
16-
<https://github.com/pandas-dev/pandas-datareader>`_. This will allow the data
16+
<https://github.com/pydata/pandas-datareader>`_. This will allow the data
1717
modules to be independently updated to your pandas installation. The API for
1818
``pandas-datareader v0.1.1`` is the same as in ``pandas v0.16.1``.
1919
(:issue:`8961`)

doc/source/whatsnew/v0.14.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -630,9 +630,9 @@ There are prior version deprecations that are taking effect as of 0.14.0.
630630
- Remove ``unique`` keyword from :meth:`HDFStore.select_column` (:issue:`3256`)
631631
- Remove ``inferTimeRule`` keyword from :func:`Timestamp.offset` (:issue:`391`)
632632
- Remove ``name`` keyword from :func:`get_data_yahoo` and
633-
:func:`get_data_google` ( `commit b921d1a <https://github.com/pydata/pandas/commit/b921d1a2>`__ )
633+
:func:`get_data_google` ( `commit b921d1a <https://github.com/pandas-dev/pandas/commit/b921d1a2>`__ )
634634
- Remove ``offset`` keyword from :class:`DatetimeIndex` constructor
635-
( `commit 3136390 <https://github.com/pydata/pandas/commit/3136390>`__ )
635+
( `commit 3136390 <https://github.com/pandas-dev/pandas/commit/3136390>`__ )
636636
- Remove ``time_rule`` from several rolling-moment statistical functions, such
637637
as :func:`rolling_sum` (:issue:`1042`)
638638
- Removed neg ``-`` boolean operations on numpy arrays in favor of inv ``~``, as this is going to

doc/source/whatsnew/v0.17.1.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Conditional HTML Formatting
3636
We'll be adding features an possibly making breaking changes in future
3737
releases. Feedback is welcome_.
3838

39-
.. _welcome: https://github.com/pydata/pandas/issues/11610
39+
.. _welcome: https://github.com/pandas-dev/pandas/issues/11610
4040

4141
We've added *experimental* support for conditional HTML formatting:
4242
the visual styling of a DataFrame based on the data.

doc/source/whatsnew/v0.4.x.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Performance Enhancements
5656
- Wrote fast time series merging / joining methods in Cython. Will be
5757
integrated later into DataFrame.join and related functions
5858

59-
.. _ENH1b: https://github.com/pydata/pandas/commit/1ba56251f0013ff7cd8834e9486cef2b10098371
60-
.. _ENHdc: https://github.com/pydata/pandas/commit/dca3c5c5a6a3769ee01465baca04cfdfa66a4f76
61-
.. _ENHed: https://github.com/pydata/pandas/commit/edd9f1945fc010a57fa0ae3b3444d1fffe592591
62-
.. _ENH56: https://github.com/pydata/pandas/commit/56e0c9ffafac79ce262b55a6a13e1b10a88fbe93
59+
.. _ENH1b: https://github.com/pandas-dev/pandas/commit/1ba56251f0013ff7cd8834e9486cef2b10098371
60+
.. _ENHdc: https://github.com/pandas-dev/pandas/commit/dca3c5c5a6a3769ee01465baca04cfdfa66a4f76
61+
.. _ENHed: https://github.com/pandas-dev/pandas/commit/edd9f1945fc010a57fa0ae3b3444d1fffe592591
62+
.. _ENH56: https://github.com/pandas-dev/pandas/commit/56e0c9ffafac79ce262b55a6a13e1b10a88fbe93
6363

doc/source/whatsnew/v0.5.0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ Performance Enhancements
3939
- VBENCH Significantly sped up conversion of nested dict into DataFrame (:issue:`212`)
4040
- VBENCH Significantly speed up DataFrame ``__repr__`` and ``count`` on large mixed-type DataFrame objects
4141

42-
.. _ENH61: https://github.com/pydata/pandas/commit/6141961
43-
.. _ENH5c: https://github.com/pydata/pandas/commit/5ca6ff5d822ee4ddef1ec0d87b6d83d8b4bbd3eb
42+
.. _ENH61: https://github.com/pandas-dev/pandas/commit/6141961
43+
.. _ENH5c: https://github.com/pandas-dev/pandas/commit/5ca6ff5d822ee4ddef1ec0d87b6d83d8b4bbd3eb

pandas/io/data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
raise ImportError(
22
"The pandas.io.data module is moved to a separate package "
33
"(pandas-datareader). After installing the pandas-datareader package "
4-
"(https://github.com/pandas-dev/pandas-datareader), you can change "
4+
"(https://github.com/pydata/pandas-datareader), you can change "
55
"the import ``from pandas.io import data, wb`` to "
66
"``from pandas_datareader import data, wb``.")

pandas/io/wb.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
raise ImportError(
22
"The pandas.io.wb module is moved to a separate package "
33
"(pandas-datareader). After installing the pandas-datareader package "
4-
"(https://github.com/pandas-dev/pandas-datareader), you can change "
4+
"(https://github.com/pydata/pandas-datareader), you can change "
55
"the import ``from pandas.io import data, wb`` to "
66
"``from pandas_datareader import data, wb``.")

pandas/tslib.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1665,7 +1665,7 @@ cdef inline object _get_zone(object tz):
16651665
'implicitly by passing a string like "dateutil/Europe'
16661666
'/London" when you construct your pandas objects instead '
16671667
'of passing a timezone object. See '
1668-
'https://github.com/pydata/pandas/pull/7362')
1668+
'https://github.com/pandas-dev/pandas/pull/7362')
16691669
return 'dateutil/' + tz._filename
16701670
else:
16711671
# tz is a pytz timezone or unknown.
@@ -4041,7 +4041,7 @@ cdef inline object _tz_cache_key(object tz):
40414041
'passing a string like "dateutil/Europe/London" '
40424042
'when you construct your pandas objects instead '
40434043
'of passing a timezone object. See '
4044-
'https://github.com/pydata/pandas/pull/7362')
4044+
'https://github.com/pandas-dev/pandas/pull/7362')
40454045
return 'dateutil' + tz._filename
40464046
else:
40474047
return None

0 commit comments

Comments
 (0)