Skip to content

Commit fdd1247

Browse files
committed
Rename to main
1 parent 91d3f0b commit fdd1247

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/source/getting_started/comparison/comparison_with_sql.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ structure.
1818
1919
url = (
2020
"https://raw.github.com/pandas-dev"
21-
"/pandas/master/pandas/tests/io/data/csv/tips.csv"
21+
"/pandas/main/pandas/tests/io/data/csv/tips.csv"
2222
)
2323
tips = pd.read_csv(url)
2424
tips

pandas/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def git_versions_from_keywords(keywords, tag_prefix, verbose):
199199
# refs/heads/ and refs/tags/ prefixes that would let us distinguish
200200
# between branches and tags. By ignoring refnames without digits, we
201201
# filter out many common branch names like "release" and
202-
# "stabilization", as well as "HEAD" and "master".
202+
# "stabilization", as well as "HEAD" and "main".
203203
tags = {r for r in refs if re.search(r"\d", r)}
204204
if verbose:
205205
print("discarding '%s', no digits" % ",".join(refs - tags))

pandas/tests/io/test_html.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def test_banklist_url(self):
171171
@tm.network
172172
def test_spam_url(self):
173173
url = (
174-
"https://raw.githubusercontent.com/pandas-dev/pandas/master/"
174+
"https://raw.githubusercontent.com/pandas-dev/pandas/main/"
175175
"pandas/tests/io/data/html/spam.html"
176176
)
177177
df1 = self.read_html(url, match=".*Water.*")

0 commit comments

Comments
 (0)