8000 Deprecated Series.ftype, Series.ftypes and DataFrame.ftypes features by thiviyanT · Pull Request #26744 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Deprecated Series.ftype, Series.ftypes and DataFrame.ftypes features #26744

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Jun 11, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
replacing single quotes with double quotes for windows
  • Loading branch information
datapythonista committed Sep 26, 2018
commit 0fea26784697f4f6e75445be18300a579c0f2a16
6 changes: 3 additions & 3 deletions doc/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,10 @@ def _sphinx_build(self, kind):
'-b{}'.format(kind),
'-{}'.format(
'v' * self.verbosity) if self.verbosity else '',
'-d\'{}\''.format(os.path.join(BUILD_PATH, 'doctrees')),
'-d"{}"'.format(os.path.join(BUILD_PATH, 'doctrees')),
'-Dexclude_patterns={}'.format(self.exclude_patterns),
'\'{}\''.format(SOURCE_PATH),
'\'{}\''.format(os.path.join(BUILD_PATH, kind)))
'"{}"'.format(SOURCE_PATH),
'"{}"'.format(os.path.join(BUILD_PATH, kind)))

def _open_browser(self):
base_url = os.path.join('file://', DOC_PATH, 'build', 'html')
Expand Down
0