Skip to content
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

DOC: CI failure due to fsspec deprecation warning #32832

Closed
ShaharNaveh opened this issue Mar 19, 2020 · 5 comments · Fixed by #32833
Closed

DOC: CI failure due to fsspec deprecation warning #32832

ShaharNaveh opened this issue Mar 19, 2020 · 5 comments · Fixed by #32833
Labels
CI Continuous Integration Docs
Milestone

Comments

@ShaharNaveh
Copy link
Member

ShaharNaveh commented Mar 19, 2020

There is CI failure in the Web/Docs, under check ipython directive errors on github actions, noticed on #32831 and on #32830

The error that is being shown:

Run ! grep -B1 "^<<<-------------------------------------------------------------------------$" sphinx.log
  FutureWarning,
<<<-------------------------------------------------------------------------
##[error]Process completed with exit code 1.

The root cause of the problem, is a warning that is generated during the creation of the docs.

>>>-------------------------------------------------------------------------
Warning in /home/runner/work/pandas/pandas/doc/source/user_guide/scale.rst at block ending on line 254
 Specify :okwarning: as an option in the ipython:: block to suppress this message
 ----------------------------------------------------------------------------
 /home/runner/miniconda3/envs/pandas-dev/lib/python3.7/site-packages/fsspec/implementations/local.py:33: FutureWarning: The default value of auto_mkdir=True has been deprecated and will be changed to auto_mkdir=False by default in a future release.
   FutureWarning,
<<<-------------------------------------------------------------------------
@jorisvandenbossche jorisvandenbossche changed the title CI failure DOC: CI failure due to fsspec deprecation warning Mar 19, 2020
@jorisvandenbossche
Copy link
Member

 >>>-------------------------------------------------------------------------
Warning in /home/runner/work/pandas/pandas/doc/source/user_guide/scale.rst at block ending on line 254
Specify :okwarning: as an option in the ipython:: block to suppress this message
----------------------------------------------------------------------------
/home/runner/miniconda3/envs/pandas-dev/lib/python3.7/site-packages/fsspec/implementations/local.py:33: FutureWarning: The default value of auto_mkdir=True has been deprecated and will be changed to auto_mkdir=False by default in a future release.
  FutureWarning,
<<<-------------------------------------------------------------------------

@ShaharNaveh
Copy link
Member Author

 >>>-------------------------------------------------------------------------
Warning in /home/runner/work/pandas/pandas/doc/source/user_guide/scale.rst at block ending on line 254
Specify :okwarning: as an option in the ipython:: block to suppress this message
----------------------------------------------------------------------------
/home/runner/miniconda3/envs/pandas-dev/lib/python3.7/site-packages/fsspec/implementations/local.py:33: FutureWarning: The default value of auto_mkdir=True has been deprecated and will be changed to auto_mkdir=False by default in a future release.
  FutureWarning,
<<<-------------------------------------------------------------------------

Thanks @jorisvandenbossche I have updated the post above :)

@jorisvandenbossche jorisvandenbossche added CI Continuous Integration Docs labels Mar 20, 2020
@jorisvandenbossche jorisvandenbossche added this to the 1.0.4 milestone Mar 20, 2020
@jorisvandenbossche
Copy link
Member

jorisvandenbossche commented Mar 20, 2020

@TomAugspurger @martindurant is this something to report to dask?

The warning comes from this snippet in the pandas docs:

   import dask.dataframe as dd
   ddf = dd.read_parquet("data/timeseries/ts*.parquet", engine="pyarrow")
   ddf

which gives the warning:

FutureWarning: The default value of auto_mkdir=True has been deprecated and will be changed to auto_mkdir=False by default in a future release.

@TomAugspurger
Copy link
Contributor

This is with fsspec 0.6.3?

@TomAugspurger
Copy link
Contributor

dask/dask#6028 is the same apparently.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CI Continuous Integration Docs
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants