.. _l-changes: Changes ======= .. plot:: import matplotlib.pyplot as plt x = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52] y = [1, 0, 3, 0, 0, 0, 0, 9, 12, 0, 0, 0, 0, 0, 0, 2, 1, 3, 0, 0, 0, 2, 6, 0, 2, 4, 2, 1, 3, 1, 8, 0, 8, 4, 3, 0, 0, 3, 1, 0, 0, 1, 0, 2, 0, 0, 3, 4, 0, 0, 0, 0, 2] xl = ['2022-w22', '2022-w23', '2022-w24', '2022-w25', '2022-w26', '2022-w27', '2022-w28', '2022-w29', '2022-w30', '2022-w31', '2022-w32', '2022-w33', '2022-w34', '2022-w35', '2022-w36', '2022-w37', '2022-w38', '2022-w39', '2022-w40', '2022-w41', '2022-w42', '2022-w43', '2022-w44', '2022-w45', '2022-w46', '2022-w47', '2022-w48', '2022-w49', '2022-w50', '2022-w51', '2022-w52', '2023-w01', '2023-w02', '2023-w03', '2023-w04', '2023-w05', '2023-w06', '2023-w07', '2023-w08', '2023-w09', '2023-w10', '2023-w11', '2023-w12', '2023-w13', '2023-w14', '2023-w15', '2023-w16', '2023-w17', '2023-w18', '2023-w19', '2023-w20', '2023-w21', '2023-w22'] plt.close('all') plt.style.use('ggplot') fig, ax = plt.subplots(nrows=1, ncols=1, figsize=(10, 4)) ax.bar(x, y) tig = ax.get_xticks() labs = [] for t in tig: if t in x: labs.append(xl[x.index(t)]) else: labs.append("") ax.set_xticklabels(labs) ax.grid(True) ax.set_title("commits") plt.show() List of recent changes: .. list-table:: :widths: auto :header-rows: 1 * - # - change number - date - author - comment * - 3824 - `9263627b `_ - 2023-05-31 - xavier dupré - new version * - 3823 - `f38b8e3e `_ - 2023-05-31 - xavier dupré - Updates for sphinx (#387) * - 3822 - `786a6e5a `_ - 2023-04-24 - xavier dupré - update version * - 3821 - `0e901e33 `_ - 2023-04-24 - xavier dupré - fix missing variables * - 3820 - `a8af6f17 `_ - 2023-04-24 - xavier dupré - update version number * - 3819 - `6ad955f6 `_ - 2023-04-24 - Xavier Dupré - Fix import issue (#386) * - 3818 - `0bf61fb7 `_ - 2023-04-23 - xavier dupré - style * - 3817 - `f0965e7a `_ - 2023-04-23 - xavier dupré - version + style * - 3816 - `cd1d4540 `_ - 2023-04-18 - xavier dupré - Fix a unit test broken with pandas 2.0 * - 3815 - `48e17b78 `_ - 2023-04-01 - xavier dupré - Fixes missing path. * - 3814 - `35a590af `_ - 2023-04-01 - xavier dupré - Fixes relative path in sphinx_gdot_extension * - 3813 - `92b2a004 `_ - 2023-03-19 - xavier dupré - Fixes gdot extension with missing javascript dependencies (#385) * - 3812 - `94a5f87e `_ - 2023-02-20 - xavier dupré - Update run_cmd.py * - 3811 - `fb453041 `_ - 2023-02-19 - xavier dupré - lint * - 3810 - `a314a5b1 `_ - 2023-02-18 - xavier dupré - lint * - 3809 - `4c27ce45 `_ - 2023-02-17 - xavier dupré - Update _pylint_common.py * - 3808 - `7ab37ebb `_ - 2023-01-28 - xavier dupré - restore missing files * - 3807 - `15c6df76 `_ - 2023-01-28 - xavier dupré - upgrade version * - 3806 - `a84e1650 `_ - 2023-01-28 - xavier dupré - Renames phdoc_static into _static (#384) * - 3805 - `317547db `_ - 2023-01-21 - xavier dupré - Update test_pwd_helper.py * - 3804 - `5eedfeeb `_ - 2023-01-20 - xavier dupré - catch errors * - 3803 - `0ac8a39b `_ - 2023-01-19 - xavier dupré - improves unit test * - 3802 - `56369fc8 `_ - 2023-01-18 - xavier dupré - Update test_pwd_helper.py * - 3801 - `3678c605 `_ - 2023-01-12 - xavier dupré - fix import issue * - 3800 - `c07d5716 `_ - 2023-01-11 - xavier dupré - lint * - 3799 - `fb51ba72 `_ - 2023-01-11 - xavier dupré - finalize modification for sphinx 6 * - 3798 - `7f59a3b0 `_ - 2023-01-10 - xavier dupré - Fixes attribute source missing for sphinx>6 (#383) * - 3797 - `b23d4d11 `_ - 2023-01-09 - xavier dupré - removes sphinx_rtd_theme * - 3796 - `c95dc8ed `_ - 2023-01-09 - xavier dupré - Update requirements.txt * - 3795 - `4ebf55d3 `_ - 2023-01-09 - xavier dupré - Update requirements.txt * - 3794 - `ef96103d `_ - 2023-01-09 - xavier dupré - update sphinx version * - 3793 - `98cce070 `_ - 2023-01-01 - xavier dupré - Update LICENSE.txt * - 3792 - `086dd73e `_ - 2023-01-01 - xavier dupré - version * - 3791 - `ea4eac53 `_ - 2023-01-01 - xavier dupré - skip if a path is empty * - 3790 - `0a9221f9 `_ - 2023-01-01 - xavier dupré - fix two unittests * - 3789 - `51355603 `_ - 2022-12-31 - xavier dupré - Remove broken import * - 3788 - `59693ff3 `_ - 2022-12-31 - xavier dupré - add missing options for pydata_sphinx_theme * - 3787 - `241bb48a `_ - 2022-12-30 - xavier dupré - update extlinks value * - 3786 - `bc0af2e5 `_ - 2022-12-29 - xavier dupré - switch to embedded latex images * - 3785 - `5581117c `_ - 2022-12-22 - xavier dupré - fix paths in subgalleries * - 3784 - `2c66bfdf `_ - 2022-12-16 - xavier dupré - fix a missing path * - 3783 - `16e1fee5 `_ - 2022-12-13 - xavier dupré - fix math images for examples * - 3782 - `cc60876f `_ - 2022-12-13 - xavier dupré - Update pyquick.py * - 3781 - `843c9159 `_ - 2022-12-05 - xavier dupré - Adds parameter raise_exception to stop the execution of a notebook (#382) * - 3780 - `6c2f277a `_ - 2022-11-29 - xadupre - rename plot_width into width for bokeh * - 3779 - `c2a4502a `_ - 2022-11-29 - xadupre - remove useless test * - 3778 - `d86a3ed7 `_ - 2022-11-21 - xavier dupré - Update broken unit test * - 3777 - `4a10bc4e `_ - 2022-11-21 - xavier dupré - update version * - 3776 - `0c345dfc `_ - 2022-11-21 - Xavier Dupré - Calls assert_allclose in assertEqualArray (#380) * - 3775 - `47b00fab `_ - 2022-11-21 - Xavier Dupré - Updates CI to python 3.11 (#381) * - 3774 - `bea0d173 `_ - 2022-11-14 - xadupre - Update .local.jenkins.lin.yml * - 3773 - `52440c97 `_ - 2022-11-14 - xadupre - remove unnecessary test * - 3772 - `31b0f56b `_ - 2022-11-01 - xavier dupré - lint * - 3771 - `1c444254 `_ - 2022-11-01 - xavier dupré - Update conf.py * - 3770 - `529b8f11 `_ - 2022-11-01 - xavier dupré - Update conf.py * - 3769 - `c0a99aa9 `_ - 2022-10-31 - xavier dupré - clean * - 3768 - `dfa896ba `_ - 2022-10-31 - xavier dupré - Removes bokeh sphinx extension * - 3767 - `3957115c `_ - 2022-10-31 - xavier dupré - fix failing unit test * - 3766 - `73a16802 `_ - 2022-10-30 - xavier dupré - update history * - 3765 - `1732104b `_ - 2022-10-30 - xavier dupré - Implements a function to measure the documentation (#379) * - 3764 - `958401aa `_ - 2022-09-27 - xavier dupré - lint * - 3763 - `63bdbd98 `_ - 2022-09-27 - xavier dupré - update history * - 3762 - `96b00f26 `_ - 2022-09-27 - Xavier Dupré - Removes dependency on sphinxcontrib.imagesvg (#378) * - 3761 - `0d78414f `_ - 2022-09-25 - xavier dupré - remove failing test * - 3760 - `04d74af5 `_ - 2022-09-16 - xavier dupré - Fixes failing unit tests (#377) * - 3759 - `8a8569ab `_ - 2022-09-14 - xavier dupré - Fixes bug when using new version of markdown (#376) * - 3758 - `80aa975e `_ - 2022-07-30 - xavier dupré - upgrade pyquicksetup * - 3757 - `64e12685 `_ - 2022-07-29 - xavier dupré - lint * - 3756 - `c09f3975 `_ - 2022-07-29 - xavier dupré - avoid an issue when a loop is empty * - 3755 - `b9dc403e `_ - 2022-07-29 - Xavier Dupré - Reduces the number of warnings (#375) * - 3754 - `d80a3ab8 `_ - 2022-07-29 - Xavier Dupré - Improves unit test summary report (#374) * - 3753 - `0b11fc1e `_ - 2022-07-29 - xavier dupré - update history and version * - 3752 - `aaa6683a `_ - 2022-07-29 - xavier dupré - Improves results after running the unit tests (#373) * - 3751 - `196f7fd4 `_ - 2022-07-27 - xavier dupré - fix null self.builder.env in _CustomSphinx * - 3750 - `07439189 `_ - 2022-07-27 - xavier dupré - Update rst_converters.py * - 3749 - `75a5ad17 `_ - 2022-07-27 - xavier dupré - Update appveyor.yml * - 3748 - `72add6e7 `_ - 2022-07-25 - xavier dupré - update history * - 3747 - `e288a06d `_ - 2022-07-25 - xavier dupré - Adds missing argument env in dummy application sphinx builder (#372) * - 3746 - `c85d5b1f `_ - 2022-07-23 - xavier dupré - Update config.yml * - 3745 - `baac59dd `_ - 2022-07-22 - xavier dupré - update version * - 3744 - `8dd33102 `_ - 2022-07-20 - xadupre - lint * - 3743 - `5558b960 `_ - 2022-07-20 - Xavier Dupré - Improves logging calls (#371) * - 3742 - `2fedcd55 `_ - 2022-07-20 - xadupre - filter out sphinx warnings * - 3741 - `9998b0e4 `_ - 2022-07-20 - xadupre - Update default_filter_warning.py * - 3740 - `71136bda `_ - 2022-07-20 - xadupre - lint * - 3739 - `8edd7fb5 `_ - 2022-07-20 - xavier dupré - fix missing import * - 3738 - `23adad13 `_ - 2022-07-20 - xavier dupré - Uses f strings (#370) * - 3737 - `efbc92e2 `_ - 2022-06-13 - xavier dupré - lint * - 3736 - `aa9de290 `_ - 2022-06-13 - xavier dupré - Restores callback_begin in set_sphinx_variables * - 3735 - `a6d61e41 `_ - 2022-06-13 - xavier dupré - lint * - 3734 - `937c0417 `_ - 2022-06-05 - xavier dupré - Update conf.py * - 3733 - `ae8a6612 `_ - 2022-06-03 - Xavier Dupré - Removes lint R0201 (#369) * - 3732 - `96bdca31 `_ - 2022-06-03 - xavier dupré - version * - 3731 - `7f97975f `_ - 2022-06-02 - Xavier Dupré - Fixes class SqlLite3FileStore where multiple thread open a sqlite3 co… (#368) * - 3730 - `65bfdb1b `_ - 2022-05-20 - xavier dupré - lint * - 3729 - `99617138 `_ - 2022-05-20 - xavier dupré - lint * - 3727 - `569628a1 `_ - 2022-05-20 - xavier dupré - lint * - 3726 - `89e8a2ee `_ - 2022-04-26 - xavier dupré - Extends sphinx quote extension. * - 3725 - `91b553e1 `_ - 2022-04-22 - xavier dupré - Updates quote sphinx extension * - 3724 - `2a4d2670 `_ - 2022-04-20 - xavier dupré - version * - 3723 - `a93e09af `_ - 2022-04-20 - xavier dupré - Extends quote extension (#365) * - 3722 - `a0b4b69b `_ - 2022-04-20 - xavier dupré - Adds parameter title1 to quote directive (#364) * - 3721 - `703793ba `_ - 2022-04-19 - xavier dupré - Extends quote extension (sphinx) (#363) * - 3720 - `5dc34a51 `_ - 2022-03-29 - xadupre - lint * - 3719 - `50eb2601 `_ - 2022-03-27 - xavier dupré - pin jinja2 to 3.0.3 * - 3717 - `e081262f `_ - 2022-03-24 - xavier dupré - better error message * - 3716 - `01ecdd8c `_ - 2022-03-19 - xavier dupré - lint * - 3715 - `29fae380 `_ - 2022-03-15 - xavier dupré - Simplifications (#362) * - 3714 - `a4d64ef6 `_ - 2022-03-06 - xavier dupré - fix unit test * - 3713 - `437026dd `_ - 2022-03-06 - xavier dupré - Update .local.jenkins.lin.yml * - 3712 - `649f7617 `_ - 2022-03-06 - xavier dupré - Update setup.py * - 3711 - `d89546c5 `_ - 2022-02-22 - xavier dupré - lint * - 3710 - `03c44efa `_ - 2022-02-21 - xavier dupré - fix missing import * - 3709 - `bec60415 `_ - 2022-02-20 - xavier dupré - catch more exception * - 3708 - `81da8ccd `_ - 2022-02-15 - xavier dupré - deal with function with no parameter on the command line * - 3707 - `73868fe9 `_ - 2022-02-15 - xavier dupré - better error message * - 3706 - `9100fdda `_ - 2022-02-13 - xavier dupré - disable logging for sphinx * - 3705 - `e54bc3c1 `_ - 2022-02-13 - xavier dupré - Update requirements.txt * - 3704 - `29508047 `_ - 2022-02-13 - xavier dupré - Removes logging propagation when catching it for unittest (#361) * - 3703 - `53af941e `_ - 2022-02-01 - xavier dupré - update requirements * - 3702 - `a5403628 `_ - 2022-01-25 - xavier dupré - lint * - 3701 - `f82511ac `_ - 2022-01-19 - xavier dupré - Fix a missing attribute introduced in IPython 8.0 (class MagicDiff) * - 3700 - `6bf2cc44 `_ - 2022-01-09 - xavier dupré - skip nbconvert version * - 3699 - `00d9d9b6 `_ - 2022-01-09 - xavier dupré - better error message * - 3697 - `103a1350 `_ - 2021-12-30 - xavier dupré - upgrade version * - 3696 - `acdd8330 `_ - 2021-12-30 - xavier dupré - Switches CI to python 3.10 (#360) * - 3695 - `57a5153a `_ - 2021-12-22 - xavier dupré - show less in default_conf.py * - 3694 - `707d21bc `_ - 2021-12-15 - xavier dupré - Merge branch 'master' of https://github.com/sdpython/pyquickhelper * - 3693 - `3ee695c5 `_ - 2021-12-15 - xavier dupré - missing files for the documentation * - 3692 - `717fe20a `_ - 2021-12-08 - Xavier Dupré - Removes axes by default in plot_graphviz (#359) * - 3691 - `82dbea5b `_ - 2021-12-07 - xavier dupré - lint * - 3690 - `e24594c3 `_ - 2021-12-07 - xavier dupré - update history * - 3689 - `39303c50 `_ - 2021-12-07 - Xavier Dupré - Add parameter callback_begin when generating the documentation (#358) * - 3688 - `5869b826 `_ - 2021-12-04 - xavier dupré - Update default_conf.py * - 3687 - `ad23363e `_ - 2021-12-01 - xavier dupré - Fix missing variable in plot_graphviz * - 3686 - `54f8641f `_ - 2021-11-30 - xavier dupré - update history * - 3685 - `db999919 `_ - 2021-11-28 - xavier dupré - Removes setup_hook (#357) * - 3684 - `2d45fefd `_ - 2021-11-28 - xavier dupré - Fixes ExtTestCase.assertLogging (#356) * - 3683 - `5a5a9fc5 `_ - 2021-11-27 - xavier dupré - lint * - 3682 - `1e33bef8 `_ - 2021-11-27 - xavier dupré - update replacement in notebooks * - 3681 - `9c012f3b `_ - 2021-11-25 - xavier dupré - support option ax='new' * - 3680 - `36dc93a5 `_ - 2021-11-24 - xavier dupré - Update test_imgexport.py * - 3679 - `c6454b1f `_ - 2021-11-24 - xavier dupré - Fix concat_images * - 3678 - `dcb737bc `_ - 2021-11-23 - xavier dupré - Code coverage and history * - 3677 - `8d26b43d `_ - 2021-11-23 - xavier dupré - Adds function to concatenate images (#355) * - 3676 - `305725ea `_ - 2021-11-21 - xavier dupré - update requirements * - 3675 - `d66f5d98 `_ - 2021-11-21 - xavier dupré - fix missing import * - 3674 - `8ae01ef0 `_ - 2021-11-20 - xavier dupré - refactoring * - 3673 - `26a044d3 `_ - 2021-11-20 - xavier dupré - update unit test to convert notebooks * - 3672 - `48bd3a6c `_ - 2021-11-20 - xavier dupré - Update notebook_runner.py * - 3671 - `37a840f8 `_ - 2021-11-20 - xavier dupré - Update default_conf.py * - 3670 - `18da9bc2 `_ - 2021-11-20 - xavier dupré - add one more unit test * - 3669 - `dba969fc `_ - 2021-11-20 - xavier dupré - Update notebook_runner.py * - 3668 - `1830c86f `_ - 2021-11-20 - xavier dupré - Update blog_post_list.py * - 3667 - `7151168e `_ - 2021-11-20 - xavier dupré - code coverage * - 3666 - `9189ea69 `_ - 2021-11-03 - xavier dupré - fix import issue * - 3665 - `bbe86ca0 `_ - 2021-11-02 - xavier dupré - Update test_file_store_rest.py * - 3664 - `0b5d0a6a `_ - 2021-11-02 - xavier dupré - Update test_file_store_rest.py * - 3663 - `b0ad9fdb `_ - 2021-11-02 - xavier dupré - Do not import sphinx if not needed in assertLogging * - 3662 - `8277399b `_ - 2021-10-30 - xavier dupré - Update test_LONG_full_unit_test_module_template.py * - 3661 - `f8de5062 `_ - 2021-10-26 - xavier dupré - update version and history * - 3660 - `3d0ddd88 `_ - 2021-10-26 - xavier dupré - Changes to support main branch (#354) * - 3659 - `c83d7e43 `_ - 2021-10-24 - xavier dupré - lint * - 3658 - `326276f6 `_ - 2021-10-18 - xavier dupré - version * - 3657 - `840a6e23 `_ - 2021-10-18 - xavier dupré - lint * - 3656 - `7913b0d4 `_ - 2021-10-15 - xavier dupré - lint * - 3655 - `e72ff539 `_ - 2021-10-15 - xavier dupré - lint * - 3654 - `38992b02 `_ - 2021-10-14 - xavier dupré - update history * - 3653 - `793a5d19 `_ - 2021-10-13 - Xavier Dupré - Fix import issue with py36, fix a infinite loop in profiling (#353) * - 3651 - `005835ad `_ - 2021-10-12 - Xavier Dupré - Implements new rendering for a profiling (#352) (show call stack, json output) * - 3650 - `9de029d3 `_ - 2021-10-10 - xavier dupré - code coverage * - 3649 - `c8a8724c `_ - 2021-10-10 - xavier dupré - code coverage * - 3648 - `7f3fd911 `_ - 2021-10-09 - xavier dupré - disable a couple of unit test on appveyor * - 3647 - `5881288a `_ - 2021-10-09 - xavier dupré - Add function profile2df (#351) * - 3646 - `6d636475 `_ - 2021-10-05 - xavier dupré - Update yaml_helper.py * - 3645 - `f0d74701 `_ - 2021-10-04 - Xavier Dupré - Replaces an exception with an logged message (#350) * - 3644 - `a14547b3 `_ - 2021-10-04 - Xavier Dupré - Update yaml_helper.py to remove option system-site-packages if needed (#349) * - 3643 - `0ae658e4 `_ - 2021-10-04 - xavier dupré - lint * - 3642 - `7b3adffb `_ - 2021-10-02 - xavier dupré - Update sphinx_main_helper.py * - 3641 - `4e69318c `_ - 2021-10-02 - xavier dupré - update history * - 3640 - `dfb45e0b `_ - 2021-10-02 - xavier dupré - Improves history rendering in markdown (#348) * - 3639 - `13a68b43 `_ - 2021-09-02 - xavier dupré - lint * - 3638 - `d64bd0a1 `_ - 2021-09-02 - xavier dupré - lint * - 3637 - `21dade57 `_ - 2021-09-02 - xavier dupré - add tmpl extension * - 3636 - `3f772869 `_ - 2021-09-02 - xavier dupré - Adds pseudo recursive getstate * - 3635 - `442ce0f5 `_ - 2021-09-02 - xavier dupré - lint * - 3634 - `f8cbb26e `_ - 2021-08-23 - xavier dupré - fix unit test * - 3633 - `fe2ceb9b `_ - 2021-08-23 - xavier dupré - lint * - 3630 - `6a27de08 `_ - 2021-08-19 - xavier dupré - travis * - 3628 - `519463d4 `_ - 2021-08-18 - xavier dupré - Adds function to shorten big constant in unit tests * - 3627 - `16f99786 `_ - 2021-08-15 - xavier dupré - version * - 3626 - `16fcef4a `_ - 2021-08-15 - Xavier Dupré - Improves file comparison, add magic command codediff (#345) * - 3625 - `04474cd9 `_ - 2021-07-25 - xavier dupré - lint * - 3624 - `14d18a69 `_ - 2021-07-25 - xavier dupré - Update myexample2.py due a failure in astroid (astroid.exceptions.TooManyLevelsError) (#344) * - 3623 - `15496beb `_ - 2021-07-13 - xavier dupré - lint * - 3622 - `56693d26 `_ - 2021-07-13 - xavier dupré - Update HISTORY.rst * - 3621 - `1bd4cb9d `_ - 2021-07-13 - xavier dupré - Update for Sphinx 4.1.0 (#343) * - 3620 - `37bfb9ef `_ - 2021-07-06 - xavier dupré - lint * - 3619 - `1fc26935 `_ - 2021-07-05 - xavier dupré - lint * - 3618 - `7dc248fc `_ - 2021-06-23 - xavier dupré - add hpp extension * - 3617 - `9449cd74 `_ - 2021-06-04 - xavier dupré - update history, version * - 3616 - `d726e6f0 `_ - 2021-06-03 - xavier dupré - fix circleci unit test * - 3615 - `706ea0e4 `_ - 2021-06-03 - xavier dupré - Fixes azure-pipelines.yml pipeline (#342) * - 3614 - `d41203b8 `_ - 2021-06-02 - Jan-Benedikt Jagusch - Only log args if they are iterable (#341) * - 3613 - `1a18c8e6 `_ - 2021-05-27 - xavier dupré - update travis link * - 3612 - `ad209e40 `_ - 2021-05-27 - xavier dupré - lint * - 3611 - `6ceb65e9 `_ - 2021-05-27 - xavier dupré - removes add_javascript, add_stylesheet * - 3609 - `fa0e636e `_ - 2021-05-27 - xavier dupré - style * - 3608 - `b2456dff `_ - 2021-05-27 - xavier dupré - lint * - 3607 - `d42e1579 `_ - 2021-05-14 - xavier dupré - reduce the default number of builds to keep in jenkins * - 3605 - `044aee21 `_ - 2021-05-10 - xavier dupré - lint * - 3604 - `81808c33 `_ - 2021-05-10 - xavier dupré - lint * - 3603 - `b1304ebb `_ - 2021-05-10 - xavier dupré - Enables support for Sphinx 4.0 (#339) * - 3602 - `b15433e8 `_ - 2021-05-10 - xavier dupré - freeze sphinx version < 4.0 * - 3601 - `ac377c84 `_ - 2021-05-10 - xavier dupré - Adds a command in the setup to check url in the code or documentation (#338) * - 3600 - `a9f9396e `_ - 2021-05-06 - xavier dupré - improves behavior of blog processing * - 3599 - `134b9fed `_ - 2021-05-06 - xavier dupré - add mp3, mp4 to the list of files to copy for the documentation * - 3598 - `68a06b3c `_ - 2021-05-03 - xavier dupré - disable one pylint warning * - 3596 - `14a1770f `_ - 2021-04-21 - xavier dupré - Update paths where to look for graphviz * - 3595 - `94751bd5 `_ - 2021-04-18 - xavier dupré - Updates pyquicksetup to avoid subfolders starting with '_' * - 3594 - `a5a418aa `_ - 2021-04-18 - xavier dupré - better messages * - 3593 - `12c76172 `_ - 2021-04-17 - xavier dupré - Update default_filter_warning.py * - 3592 - `4158caa4 `_ - 2021-04-17 - xavier dupré - Adds function to easily store and retrieve dataframe through a REST API (#337) * - 3591 - `b0c82d16 `_ - 2021-04-17 - xavier dupré - Fix an issue in pyquicksetup about github owner, improves error message * - 3590 - `96b49c5e `_ - 2021-04-14 - xavier dupré - Better error message * - 3589 - `7541af5a `_ - 2021-04-12 - xavier dupré - Adds step write_version to upgrade version number. * - 3588 - `54dd4151 `_ - 2021-04-12 - xavier dupré - Add member body to RstBuilder to catch possible mistake in RstBuilder * - 3587 - `1b7d0f1b `_ - 2021-04-12 - xavier dupré - add handle for todo_node in rst builder and md builder * - 3586 - `76cfbb14 `_ - 2021-04-12 - xavier dupré - Update setup.py * - 3585 - `a3914cc5 `_ - 2021-04-11 - xavier dupré - Upgrade version number * - 3584 - `781de149 `_ - 2021-04-11 - xavier dupré - Fix missing variable name * - 3583 - `daddf9d2 `_ - 2021-04-11 - xavier dupré - Improves unit tests behavior * - 3582 - `e1a863f5 `_ - 2021-04-11 - xavier dupré - Better error message * - 3581 - `d162f1b0 `_ - 2021-04-11 - xavier dupré - Fixes unit tests * - 3580 - `6e33722a `_ - 2021-04-11 - xavier dupré - add test for simpl project * - 3579 - `f57a539d `_ - 2021-04-11 - xavier dupré - Improves a couple of files * - 3578 - `0edbd059 `_ - 2021-04-11 - xavier dupré - rename * - 3577 - `4993dd8d `_ - 2021-04-11 - xavier dupré - Add simple project for unit test * - 3576 - `980da44a `_ - 2021-04-11 - xavier dupré - Removes a couple of versionadded, versionchanged. * - 3575 - `3c8814e6 `_ - 2021-04-11 - xavier dupré - style * - 3574 - `15e4fbc6 `_ - 2021-04-11 - xavier dupré - Update appveyor.yml * - 3573 - `0f71e699 `_ - 2021-04-11 - xavier dupré - Create .codecov.yml * - 3572 - `92209290 `_ - 2021-04-11 - xavier dupré - Refactoring * - 3571 - `ce94c7b8 `_ - 2021-04-11 - xavier dupré - Update test_yaml.py * - 3570 - `56c7d198 `_ - 2021-04-11 - xavier dupré - ci * - 3569 - `55c271bb `_ - 2021-04-10 - xavier dupré - Update setup.py * - 3568 - `f073590d `_ - 2021-04-10 - xavier dupré - Update azure-pipelines.yml * - 3567 - `5d61b4d5 `_ - 2021-04-10 - xavier dupré - topic and documentation * - 3566 - `55800dcb `_ - 2021-04-10 - xavier dupré - Refactor setup.py * - 3564 - `852bd614 `_ - 2021-04-09 - xavier dupré - Add column comment to filestore * - 3563 - `2e85da77 `_ - 2021-04-09 - xavier dupré - rename add into submit * - 3562 - `cfdf92f3 `_ - 2021-04-06 - xavier dupré - Adds class to store files with sqlite3, access with FastAPI (#335) * - 3561 - `eaacf046 `_ - 2021-04-04 - xavier dupré - Renames serverdoc into server (#334) * - 3559 - `32056d81 `_ - 2021-04-03 - xavier dupré - fix error in unit test * - 3557 - `55f97f31 `_ - 2021-04-03 - xavier dupré - Update requirements.txt * - 3554 - `f42c0638 `_ - 2021-03-29 - xavier dupré - Fixes issue #332, fix style in gallery of examples (#333) * - 3553 - `ccbcd895 `_ - 2021-03-09 - xavier dupré - lint * - 3552 - `8696568a `_ - 2021-03-09 - xavier dupré - Update test_pypi_helper.py * - 3551 - `603dbd5d `_ - 2021-03-09 - xavier dupré - Update test_pypi_helper.py * - 3550 - `5c9a079e `_ - 2021-03-09 - xavier dupré - Add option process to gdot sphinx extension * - 3548 - `895a0b77 `_ - 2021-03-04 - xavier dupré - Add scipy to epkg dictionary * - 3547 - `d677116b `_ - 2021-02-28 - xavier dupré - lint * - 3546 - `32bbb03f `_ - 2021-02-24 - xavier dupré - replace an error by a warning * - 3545 - `88c389d2 `_ - 2021-02-24 - xavier dupré - Add better exception. * - 3544 - `67f2c00b `_ - 2021-02-18 - xavier dupré - remove viewcode (fails) * - 3541 - `452db86d `_ - 2021-02-15 - xavier dupré - update documentation automation * - 3540 - `a5d0a2d5 `_ - 2021-02-15 - xavier dupré - Fixes for sphinx 3.5 * - 3539 - `100f4f16 `_ - 2021-02-15 - xavier dupré - improve unit test * - 3538 - `14afc9c6 `_ - 2021-02-13 - xavier dupré - Fixes #328, improves links in notebooks * - 3537 - `8b0c9237 `_ - 2021-02-09 - xavier dupré - fix unit test * - 3535 - `0d4e555c `_ - 2021-02-09 - xavier dupré - fixes unit test * - 3534 - `1373e1d6 `_ - 2021-02-09 - xavier dupré - Add option CRB to put \r back in a file * - 3533 - `5436d6d0 `_ - 2021-02-06 - xavier dupré - fix unit test using passwords * - 3531 - `847f83fc `_ - 2021-02-06 - xavier dupré - extend unit test coverage * - 3530 - `ce44d401 `_ - 2021-01-24 - xavier dupré - Update .local.jenkins.lin.yml * - 3529 - `a717d63f `_ - 2021-01-21 - xavier dupré - Improve error message * - 3528 - `0a63296c `_ - 2021-01-18 - xavier dupré - Update setup.py * - 3527 - `9aa0c000 `_ - 2021-01-15 - xavier dupré - bypass an error when graphviz is not installed * - 3526 - `cfe67b16 `_ - 2021-01-14 - xavier dupré - lint * - 3525 - `181e72eb `_ - 2021-01-14 - xavier dupré - convert a couple of errors into warnings * - 3524 - `d6760d45 `_ - 2021-01-14 - xavier dupré - Update process_notebooks_cmd.py * - 3523 - `418a5459 `_ - 2021-01-14 - xavier dupré - Extend unit test about converting notebooks including svg * - 3522 - `37c25280 `_ - 2021-01-13 - xavier dupré - handle one more exception in process_notebook.py * - 3521 - `fcd5c802 `_ - 2021-01-13 - xavier dupré - add blog post * - 3520 - `03d2ddd7 `_ - 2021-01-13 - xavier dupré - update history * - 3518 - `4c358023 `_ - 2021-01-11 - xavier dupré - Catch one more exception in unit tests * - 3517 - `9054c85b `_ - 2021-01-11 - xavier dupré - Add more environment variables * - 3516 - `df4c8c39 `_ - 2021-01-10 - xavier dupré - lint * - 3515 - `29781ad5 `_ - 2021-01-10 - xavier dupré - bypass more unit tests * - 3514 - `cc08a32a `_ - 2021-01-10 - xavier dupré - Fix missing return * - 3513 - `a81e2c78 `_ - 2021-01-10 - xavier dupré - Update test_transfer_ftp_true.py * - 3512 - `4b9e9fe3 `_ - 2021-01-10 - xavier dupré - Better handling of password in unit tests * - 3511 - `005f3305 `_ - 2021-01-10 - xavier dupré - update unit test using passwords * - 3510 - `9b10d66b `_ - 2021-01-10 - xavier dupré - Fixes #325, use keyrings.cryptfile * - 3509 - `b8c75908 `_ - 2021-01-08 - xavier dupré - update history * - 3508 - `cc35e1a0 `_ - 2021-01-08 - xavier dupré - Update azure-pipelines.yml * - 3507 - `b257019f `_ - 2021-01-08 - xavier dupré - fix issue when running a notebook * - 3506 - `eeef300e `_ - 2021-01-08 - xavier dupré - update CI * - 3505 - `f7ba4026 `_ - 2021-01-08 - xavier dupré - Update notebook_runner.py * - 3504 - `733e1d27 `_ - 2021-01-02 - xavier dupré - Remove one line not a lint warning * - 3503 - `57090676 `_ - 2021-01-01 - xavier dupré - Update conf.py * - 3502 - `d3d01451 `_ - 2021-01-01 - xavier dupré - Update __init__.py * - 3501 - `8dc6b5bd `_ - 2020-12-31 - xavier dupré - disable one stuck test * - 3500 - `1cd14cc3 `_ - 2020-12-31 - xavier dupré - fix ut in circleci, azuredevops * - 3499 - `e4622e4b `_ - 2020-12-31 - xavier dupré - still circleci * - 3498 - `5112eca0 `_ - 2020-12-31 - xavier dupré - fix unit test in circleci * - 3497 - `22f6244e `_ - 2020-12-31 - xavier dupré - Update config.yml * - 3496 - `e0653cf3 `_ - 2020-12-31 - xavier dupré - fix azuredevops * - 3495 - `151a60eb `_ - 2020-12-31 - xavier dupré - update unit tests * - 3494 - `934998ed `_ - 2020-12-31 - xavier dupré - upgrade version number + history * - 3493 - `6641ff6d `_ - 2020-12-31 - xavier dupré - extend code coverage * - 3492 - `5d8acbc2 `_ - 2020-12-31 - xavier dupré - complete migration to python 3.9 * - 3491 - `1e607b71 `_ - 2020-12-31 - xavier dupré - fix unit tests failing due to switch to python 3.9 * - 3490 - `a540da61 `_ - 2020-12-31 - xavier dupré - Test availability on python 3.9 * - 3489 - `1e9ac278 `_ - 2020-12-10 - xavier dupré - Fixes #323, add function assert_alsmot_equal_detail * - 3488 - `24e7921c `_ - 2020-12-09 - xavier dupré - fix bug in plot_graphviz * - 3487 - `fd823ae6 `_ - 2020-12-03 - xavier dupré - pylint * - 3485 - `7fe2a0b4 `_ - 2020-11-15 - xavier dupré - Fixes #322, implements function testlog to print information * - 3484 - `f7a83f6a `_ - 2020-11-11 - xavier dupré - Update appveyor.yml * - 3483 - `cd0eb0cb `_ - 2020-11-11 - xavier dupré - Update requirements.txt * - 3482 - `6bdac743 `_ - 2020-11-11 - xavier dupré - Fixes #320, fix notebook links to github * - 3481 - `de8276e8 `_ - 2020-11-11 - xavier dupré - extend code coverage * - 3480 - `018a35f2 `_ - 2020-11-11 - xavier dupré - Fixes #321, fix svg2png after cairosvg update * - 3479 - `9e8b3ddd `_ - 2020-11-02 - xavier dupré - fix pypi issue * - 3478 - `af5b028d `_ - 2020-11-01 - xavier dupré - better error message * - 3477 - `e73ac599 `_ - 2020-11-01 - xavier dupré - call method sleep to avoid pypi issues * - 3476 - `51b0161e `_ - 2020-10-23 - xavier dupré - update CI * - 3475 - `b4135a8a `_ - 2020-10-12 - xavier dupré - fix import issues * - 3474 - `ff69c817 `_ - 2020-10-12 - xavier dupré - Update test_download_helper.py * - 3473 - `18785c00 `_ - 2020-10-12 - xavier dupré - Update config.yml * - 3472 - `7868bcfb `_ - 2020-10-12 - xavier dupré - Catch an exception for python 3.8 * - 3471 - `1af3a908 `_ - 2020-10-12 - xavier dupré - Fixes #318, add function to download data from urls stored in source files * - 3470 - `b5977f76 `_ - 2020-10-11 - xavier dupré - disable unit tests on CI * - 3469 - `80584076 `_ - 2020-10-11 - xavier dupré - Update requirements.txt * - 3468 - `5993cd32 `_ - 2020-10-11 - xavier dupré - Fixes #310, add set_password, get_password * - 3467 - `44f0e347 `_ - 2020-10-11 - xavier dupré - Fixes #312, use twine to publish a package * - 3466 - `cd022fbc `_ - 2020-10-10 - xavier dupré - pylint * - 3465 - `20adba8f `_ - 2020-09-30 - xavier dupré - Update test_module_c.py * - 3464 - `690b642b `_ - 2020-09-30 - xavier dupré - Update test_module_c.py * - 3463 - `31b3e706 `_ - 2020-09-30 - xavier dupré - Fixes #317, fLOG returns the first printed object * - 3462 - `0b1b0c4b `_ - 2020-09-23 - xavier dupré - Removes None value at the first row when converting a notebook in RST (nbconvert >= 6.0) * - 3461 - `48e2d529 `_ - 2020-09-23 - xavier dupré - better error message * - 3460 - `a051ace9 `_ - 2020-09-23 - xavier dupré - Better error message * - 3459 - `0096a19a `_ - 2020-09-23 - xavier dupré - improves notebook conversion * - 3458 - `e5a246c9 `_ - 2020-09-23 - xavier dupré - fix issue with none values * - 3457 - `e91d238d `_ - 2020-09-23 - xavier dupré - More logs when converting a notebook into rst * - 3456 - `9912e584 `_ - 2020-09-22 - xavier dupré - Update appveyor.yml * - 3455 - `df65c5d2 `_ - 2020-09-22 - xavier dupré - Catch none value * - 3454 - `24c6b33a `_ - 2020-09-22 - xavier dupré - Fixes #316, fix image pattern with * in documentation * - 3453 - `23e1c8a8 `_ - 2020-09-20 - xavier dupré - update dependencies * - 3452 - `177f7652 `_ - 2020-09-20 - xavier dupré - pylint * - 3451 - `0ef23c87 `_ - 2020-09-14 - xavier dupré - Calls _process_notebooks_in_private_cmd instead of _process_notebooks_in_private for HTML format * - 3450 - `ff867f82 `_ - 2020-09-14 - xavier dupré - better error message * - 3449 - `c2fca7df `_ - 2020-09-14 - xavier dupré - Update requirements.txt * - 3448 - `64f314bf `_ - 2020-09-14 - xavier dupré - Changes template to use when converting a notebook * - 3447 - `1013c287 `_ - 2020-09-05 - xavier dupré - Update package.json * - 3446 - `2a4a85a8 `_ - 2020-09-05 - xavier dupré - update reveal.js * - 3445 - `9f01115f `_ - 2020-09-05 - xavier dupré - blog post * - 3444 - `deb67ea8 `_ - 2020-08-30 - xavier dupré - Update test_LONG_full_unit_test_module_template.py * - 3443 - `b449d5a1 `_ - 2020-08-30 - xavier dupré - refactoring, better test * - 3442 - `67af69c4 `_ - 2020-08-28 - xavier dupré - remove 'W0707', 'R1725' * - 3441 - `a9cea726 `_ - 2020-08-27 - xavier dupré - Update test_templating.py * - 3440 - `b0165529 `_ - 2020-08-27 - xavier dupré - pylint * - 3439 - `ef0c5c30 `_ - 2020-08-12 - xavier dupré - Update sphinx_gdot_extension.py * - 3438 - `2ee8fec3 `_ - 2020-08-12 - xavier dupré - better handling of a permission error * - 3437 - `cb909498 `_ - 2020-08-10 - xavier dupré - Create 2020-08-11_traceback.rst * - 3436 - `509fb5b6 `_ - 2020-08-10 - xavier dupré - disable unit test on macosx * - 3435 - `42d55ceb `_ - 2020-08-10 - xavier dupré - Update azure-pipelines.yml * - 3434 - `7a21d15c `_ - 2020-08-10 - xavier dupré - Create 2020-08-10_pybind11_sphinx.rst * - 3433 - `8979ee39 `_ - 2020-08-09 - xavier dupré - Update config.yml * - 3432 - `28ab3198 `_ - 2020-08-09 - xavier dupré - Update config.yml * - 3431 - `300006e4 `_ - 2020-08-09 - xavier dupré - removes napoleon extension * - 3430 - `fec0e6b9 `_ - 2020-07-26 - xavier dupré - replace * by = in main notebook title * - 3429 - `078add2b `_ - 2020-07-21 - xavier dupré - add method hasnonan to ExtTestCase * - 3428 - `f684ce8b `_ - 2020-07-19 - xavier dupré - Update my-styles.css * - 3427 - `89533235 `_ - 2020-07-17 - xavier dupré - First change for #308. * - 3426 - `836c2f92 `_ - 2020-07-17 - xavier dupré - Update test_runpython_extension_toggle.py * - 3425 - `c5cf89fe `_ - 2020-07-17 - xavier dupré - add option linenos to run_python, better highlightning * - 3424 - `bacba253 `_ - 2020-07-14 - xavier dupré - code coverage * - 3423 - `0019defc `_ - 2020-07-14 - xavier dupré - Add coding: utf-8 in runpython * - 3422 - `41c3aace `_ - 2020-07-12 - xavier dupré - code coverage * - 3421 - `09aca623 `_ - 2020-07-12 - xavier dupré - go through blog post in order * - 3420 - `0d1c5023 `_ - 2020-07-10 - xavier dupré - code coverage * - 3419 - `e41e7891 `_ - 2020-07-09 - xavier dupré - update history * - 3418 - `24f527c1 `_ - 2020-07-07 - xavier dupré - Fixes #307, add function to draw a dot graph in a graph * - 3417 - `20f24704 `_ - 2020-07-02 - xavier dupré - Update default_conf.py * - 3416 - `7e9abf38 `_ - 2020-06-29 - xavier dupré - Fixes #306, removes numpydoc added by default * - 3415 - `73bebab5 `_ - 2020-06-26 - xavier dupré - code coverage * - 3414 - `c13ef9e3 `_ - 2020-06-26 - xavier dupré - code coverage * - 3413 - `9bba21e2 `_ - 2020-06-26 - xavier dupré - pep8 * - 3411 - `d0f5a2ee `_ - 2020-06-23 - xavier dupré - update CI * - 3410 - `77ce5cbb `_ - 2020-06-23 - xavier dupré - Fixes #305, improves docassert sphinx extension * - 3409 - `58f8448b `_ - 2020-06-23 - xavier dupré - fix unit tests * - 3408 - `eb8cc545 `_ - 2020-06-23 - xavier dupré - add more unit tests to check how parameters are checked * - 3407 - `ee8583ff `_ - 2020-06-22 - xavier dupré - Update requirements.txt * - 3405 - `7c00d8ae `_ - 2020-06-21 - xavier dupré - pep8 * - 3404 - `9eaeeee7 `_ - 2020-06-20 - xavier dupré - improves code coverage * - 3403 - `fe6bcd73 `_ - 2020-06-20 - xavier dupré - Update my-styles.css * - 3402 - `426c4bb2 `_ - 2020-06-19 - xavier dupré - add new badge * - 3401 - `24b98f66 `_ - 2020-06-15 - xavier dupré - Update sphinxm_convert_doc_sphinx_helper.py * - 3400 - `30655981 `_ - 2020-06-15 - xavier dupré - Update test_tocdelay_extension.py * - 3399 - `5dd099db `_ - 2020-06-14 - xavier dupré - update unit tests afte updating sphinx * - 3398 - `8ee501d5 `_ - 2020-06-08 - xavier dupré - code coverage * - 3397 - `8dd199a8 `_ - 2020-06-08 - xavier dupré - update history * - 3396 - `7fa79903 `_ - 2020-06-08 - xavier dupré - Fixes #304, add ignore_warnings * - 3395 - `f6d7e9d5 `_ - 2020-06-07 - xavier dupré - disable one warning * - 3394 - `0bf3ba55 `_ - 2020-06-03 - xavier dupré - pep8 * - 3393 - `a6163691 `_ - 2020-06-03 - xavier dupré - Fixes #303, add parameter squeeze to assertEqualArray * - 3392 - `c5a871c6 `_ - 2020-06-03 - xavier dupré - better error message * - 3391 - `e8349e79 `_ - 2020-06-03 - xavier dupré - better error messages * - 3389 - `98538445 `_ - 2020-05-25 - xavier dupré - Update requirements.txt * - 3388 - `ade279e0 `_ - 2020-05-24 - xavier dupré - pep8 * - 3387 - `827ae4b6 `_ - 2020-05-21 - xavier dupré - pep8 * - 3386 - `aa408d69 `_ - 2020-05-16 - xavier dupré - pep8 * - 3385 - `95f07dc0 `_ - 2020-05-16 - xavier dupré - Create MANIFEST.in * - 3383 - `ec14ca64 `_ - 2020-05-10 - xavier dupré - fix travis issue * - 3382 - `0f5cfa6f `_ - 2020-05-10 - xavier dupré - Enables a test on circleci, travis * - 3381 - `29d96248 `_ - 2020-05-10 - xavier dupré - Fixes #302, #301, implements assertLogging, assertWarning * - 3380 - `8c76d99d `_ - 2020-05-10 - xavier dupré - Update test_transfer_ftp_true.py * - 3379 - `66c115b5 `_ - 2020-05-10 - xavier dupré - improve code coverage * - 3378 - `2c2596ba `_ - 2020-05-08 - xavier dupré - improves code coverage * - 3377 - `aaa5fe1d `_ - 2020-05-08 - xavier dupré - pep8 * - 3376 - `c4f94289 `_ - 2020-05-08 - xavier dupré - Update test_yaml_jenkins.py * - 3375 - `27c4c393 `_ - 2020-05-08 - xavier dupré - Update test_yaml_jenkins.py * - 3374 - `a768f5e6 `_ - 2020-05-08 - xavier dupré - fix appveyor build * - 3373 - `c48bc236 `_ - 2020-05-02 - xavier dupré - documentation, cli * - 3372 - `924fe8e8 `_ - 2020-05-02 - xavier dupré - Fixes #300, replace docutils by fire for command lines * - 3371 - `aa712719 `_ - 2020-05-01 - xavier dupré - Update default_conf.py * - 3370 - `4e51bc52 `_ - 2020-04-27 - xavier dupré - Update sphinx_template_extension.py * - 3369 - `d3e0e30c `_ - 2020-04-25 - xavier dupré - Update azure-pipelines.yml * - 3368 - `f286143c `_ - 2020-04-25 - xavier dupré - Update azure-pipelines.yml * - 3367 - `19c51d93 `_ - 2020-04-24 - xavier dupré - Update default_conf.py * - 3366 - `57ae01d6 `_ - 2020-04-24 - xavier dupré - update documentation version * - 3365 - `f50c1d98 `_ - 2020-04-24 - xavier dupré - Add more exception when building the history * - 3364 - `dafb99f1 `_ - 2020-04-22 - xavier dupré - Update azure-pipelines.yml * - 3363 - `abe6fddf `_ - 2020-04-07 - xavier dupré - Fixes #298, bring code for CustomSingleFileHTMLBuilder * - 3362 - `9cb6db36 `_ - 2020-04-06 - xavier dupré - disable documentation * - 3361 - `dcb1acf5 `_ - 2020-04-06 - xavier dupré - disable one test on circleci * - 3360 - `698793cd `_ - 2020-04-06 - xavier dupré - fix history * - 3359 - `8d31c80c `_ - 2020-04-06 - xavier dupré - Fixes #206, revisit bokeh extension * - 3358 - `405d6fd8 `_ - 2020-04-06 - xavier dupré - Other fixes for #297, sphinx==3.0.0 * - 3357 - `5710d24f `_ - 2020-04-06 - xavier dupré - Fixes #297, import issue with sphinx==3.0.0 * - 3355 - `3bd810cb `_ - 2020-03-31 - xavier dupré - pep8 * - 3354 - `a56a2874 `_ - 2020-03-28 - xavier dupré - Overwrites method assertIn * - 3353 - `5a9d43df `_ - 2020-03-17 - xavier dupré - Fix bug when modifying __init__.py * - 3352 - `a3ed1de1 `_ - 2020-03-16 - xavier dupré - Update __init__.py * - 3351 - `ed250dfd `_ - 2020-03-16 - xavier dupré - update version number * - 3350 - `b18fdb20 `_ - 2020-03-16 - xavier dupré - Fixes version number to include the thrid number * - 3349 - `fac5e113 `_ - 2020-03-12 - xavier dupré - update version number * - 3348 - `18990406 `_ - 2020-03-12 - xavier dupré - Fix setup_helper.py * - 3347 - `808bcb67 `_ - 2020-03-12 - xavier dupré - Better guess for module name * - 3346 - `d053b4ec `_ - 2020-03-12 - xavier dupré - Fix bokeh failure after bokeh update * - 3345 - `9acec8e3 `_ - 2020-03-12 - xavier dupré - Fixes #296, modifies __init__.py with git version number * - 3344 - `393537b0 `_ - 2020-02-28 - xavier dupré - Fixes #295, improve import time of pycode * - 3343 - `b782d54d `_ - 2020-02-26 - xavier dupré - better error message when it fails * - 3342 - `5b0aa46e `_ - 2020-02-24 - xavier dupré - fix unit test after update of local jenkins.yml * - 3341 - `e1fc35fa `_ - 2020-02-24 - xavier dupré - Update .local.jenkins.lin.yml * - 3340 - `7df414d4 `_ - 2020-02-23 - xavier dupré - Update .local.jenkins.lin.yml * - 3339 - `82abc44a `_ - 2020-02-20 - xavier dupré - update history * - 3338 - `483c793e `_ - 2020-02-20 - xavier dupré - Fixes #294, rename command line into convert_notebook * - 3337 - `5332bad6 `_ - 2020-02-20 - xavier dupré - Update HISTORY.rst * - 3336 - `0bb34cf0 `_ - 2020-02-20 - xavier dupré - fix notebook conversion and execution * - 3335 - `e18086d5 `_ - 2020-02-20 - xavier dupré - update notebook and setup * - 3334 - `f852c6e3 `_ - 2020-02-20 - xavier dupré - Update notebook_runner.py * - 3333 - `6f656a84 `_ - 2020-02-20 - xavier dupré - Update config.yml * - 3332 - `ca20e676 `_ - 2020-02-20 - xavier dupré - Fix bug introduced by previous commit * - 3331 - `b6bbb285 `_ - 2020-02-19 - xavier dupré - removes some specific code added for older version of ipython * - 3330 - `907acd7b `_ - 2020-02-19 - xavier dupré - Fixes #292, add command to run notebook * - 3329 - `5753775f `_ - 2020-02-19 - xavier dupré - Update sphinxm_convert_doc_sphinx_helper.py * - 3328 - `251538f1 `_ - 2020-02-19 - xavier dupré - pep8 * - 3327 - `8bc215e4 `_ - 2020-02-14 - xavier dupré - Update test_history_helper.py * - 3326 - `782788d5 `_ - 2020-02-14 - xavier dupré - Improves one error message * - 3325 - `211cb402 `_ - 2020-02-12 - xavier dupré - Fix a bug in latex (improve postprocess) * - 3324 - `bf96d2b9 `_ - 2020-02-12 - xavier dupré - removes annotations * - 3323 - `9851c086 `_ - 2020-02-12 - xavier dupré - remove annotation * - 3322 - `e4c6ff12 `_ - 2020-02-12 - xavier dupré - pep8 * - 3321 - `cece74a6 `_ - 2020-02-12 - xavier dupré - Changes default loader for yaml * - 3320 - `71c8a5fc `_ - 2020-02-12 - xavier dupré - Removes ie_layout_html * - 3319 - `eb1eb976 `_ - 2020-02-12 - xavier dupré - update jenkins jobs fir the latest virtualenv * - 3318 - `0471aa34 `_ - 2020-02-12 - xavier dupré - Fix bug in rst builder * - 3317 - `6a80a306 `_ - 2020-02-12 - xavier dupré - Improves sphinx rst builder * - 3316 - `82b9d401 `_ - 2020-02-12 - xavier dupré - Fix issues with tables in sphinx builders * - 3315 - `f61d122c `_ - 2020-02-12 - xavier dupré - Fixes #291, remove circular references * - 3314 - `3d0a31c0 `_ - 2020-02-12 - xavier dupré - fix appveyor * - 3313 - `ea2ab6f7 `_ - 2020-02-07 - xavier dupré - add pip upgrade pip in local yml jobs * - 3312 - `d9433292 `_ - 2020-02-02 - xavier dupré - Fixes #290, issue with set_option * - 3311 - `496ba85e `_ - 2020-02-02 - xavier dupré - Fixes #290, class BenchMark with pandas.set_option * - 3310 - `c0f96960 `_ - 2020-01-14 - xavier dupré - Fixes #289, preprocess notebook before conversion * - 3309 - `00648283 `_ - 2020-01-10 - xavier dupré - Update notebook_with_svg.ipynb * - 3308 - `22b9ae89 `_ - 2020-01-10 - xavier dupré - update notebooks * - 3307 - `e1db6973 `_ - 2020-01-10 - xavier dupré - update nbconvert format * - 3306 - `74ac4dca `_ - 2020-01-10 - xavier dupré - fix misspelling * - 3305 - `08780409 `_ - 2020-01-10 - xavier dupré - Replace "nbformat_minor": 1 by "nbformat_minor": 4 (does not allow _ in cell type) * - 3304 - `7145ab65 `_ - 2020-01-06 - xavier dupré - better error message * - 3303 - `0b810c6d `_ - 2020-01-03 - xavier dupré - Update appveyor.yml * - 3302 - `25242505 `_ - 2020-01-03 - xavier dupré - Update appveyor.yml * - 3301 - `77cfdd40 `_ - 2020-01-03 - xavier dupré - fix job update_modules * - 3300 - `b4a69867 `_ - 2020-01-03 - xavier dupré - fix job update_modules (jenkins) * - 3299 - `66d13e8c `_ - 2020-01-02 - xavier dupré - Update test_module_c.py * - 3298 - `98656de9 `_ - 2020-01-02 - xavier dupré - Update HISTORY.rst * - 3297 - `942b26be `_ - 2020-01-02 - xavier dupré - Fix unit tests with jenkins * - 3296 - `46e268d9 `_ - 2020-01-02 - xavier dupré - Fixes #288, issues with python 3.8 and jenkins * - 3295 - `2cec45f4 `_ - 2020-01-02 - xavier dupré - Fixes for python 3.8 * - 3294 - `a4ca4287 `_ - 2020-01-02 - xavier dupré - update CI * - 3293 - `ead7889e `_ - 2020-01-02 - xavier dupré - fix unit test for python 3.8 * - 3292 - `a30feb9a `_ - 2020-01-02 - xavier dupré - update for python 3.8 * - 3291 - `f8a4c617 `_ - 2020-01-02 - xavier dupré - update license and build * - 3290 - `8ce429f1 `_ - 2019-12-18 - xavier dupré - Fix false positive when pyinstrument is used in a notebook * - 3289 - `742837c9 `_ - 2019-12-16 - xavier dupré - pep8 * - 3288 - `f8508b5d `_ - 2019-12-16 - xavier dupré - fix failing unit tests * - 3287 - `21f47d12 `_ - 2019-12-16 - xavier dupré - Fixes #287, update for coverage 5.0 * - 3286 - `0b4d1860 `_ - 2019-12-16 - xavier dupré - update coverage * - 3285 - `40d3de77 `_ - 2019-12-16 - xavier dupré - update data * - 3284 - `78b36653 `_ - 2019-12-16 - xavier dupré - new coverage report * - 3283 - `bf0e2f20 `_ - 2019-12-16 - xavier dupré - cleaning * - 3282 - `c49f5e7a `_ - 2019-12-16 - xavier dupré - Fixes #286, fix pyquickhelper for sphinx 2.3.0, removes support for sphinx < 1.8 * - 3280 - `88711df0 `_ - 2019-12-12 - xavier dupré - Fix failing unit tests * - 3279 - `8dbc660b `_ - 2019-12-12 - xavier dupré - reduce the number of added missing ids * - 3278 - `895c79ac `_ - 2019-12-12 - xavier dupré - Add missing ids when interpreting sphinx * - 3277 - `82578b8b `_ - 2019-12-12 - xavier dupré - catch errors in matplotlib directive * - 3276 - `d6602b3d `_ - 2019-12-08 - xavier dupré - Fixes #285, ftp + keyring * - 3275 - `20b7e843 `_ - 2019-12-06 - xavier dupré - Fix a couple of bugs in postconstents, githublink * - 3272 - `92dbb10f `_ - 2019-11-25 - xavier dupré - Fixes #284, add untar_files * - 3271 - `d11b511e `_ - 2019-11-25 - xavier dupré - Fixes #283, command line to publish through ftp * - 3270 - `3b1d169d `_ - 2019-11-22 - xavier dupré - skip one unit test on travis * - 3269 - `6b2ea1b7 `_ - 2019-11-22 - xavier dupré - Fixes #282, repeat function or script execution * - 3268 - `04c6858e `_ - 2019-11-12 - xavier dupré - Update post_process.py * - 3267 - `f7e75b8c `_ - 2019-11-12 - xavier dupré - removes the use of package fontspec in latex * - 3266 - `685b7090 `_ - 2019-11-11 - xavier dupré - better error message * - 3265 - `a25770e4 `_ - 2019-11-11 - xavier dupré - update history * - 3264 - `7aeb0a59 `_ - 2019-11-11 - xavier dupré - Fix nbconvert issues * - 3263 - `d8a63a9c `_ - 2019-11-11 - xavier dupré - remove the use of parskip * - 3262 - `3b84bc64 `_ - 2019-11-11 - xavier dupré - blog post * - 3261 - `45d6742f `_ - 2019-11-11 - xavier dupré - CI documentation * - 3260 - `2e59606c `_ - 2019-11-11 - xavier dupré - remove unused parts * - 3259 - `1f56c717 `_ - 2019-11-11 - xavier dupré - Remove specific version of pylzma * - 3258 - `c57f5615 `_ - 2019-11-11 - xavier dupré - switch beck to regular nbconvert * - 3257 - `208cf9e1 `_ - 2019-11-11 - xavier dupré - update CI * - 3256 - `4ce0af4c `_ - 2019-11-11 - xavier dupré - update unit test after nbconvert update * - 3255 - `78b853fa `_ - 2019-11-11 - xavier dupré - fix CI * - 3254 - `4c20cf18 `_ - 2019-11-11 - xavier dupré - update and clean unit test after an update of nbconvert * - 3253 - `9a4f07bb `_ - 2019-11-10 - xavier dupré - Fixes unittsts for #280 * - 3252 - `614c8f7b `_ - 2019-11-10 - xavier dupré - Removes wrong import for #280 * - 3251 - `942d4785 `_ - 2019-11-10 - xavier dupré - Fixes #280, removes conversion to nbpresent * - 3250 - `9a5051d5 `_ - 2019-11-10 - xavier dupré - Update venv_helper.py * - 3249 - `f9e05e59 `_ - 2019-11-07 - xavier dupré - Update utils_sphinx_doc.py * - 3248 - `f6c5cf20 `_ - 2019-11-06 - xavier dupré - fix CI and history * - 3247 - `ca1c8a18 `_ - 2019-11-06 - xavier dupré - Fixes #279, assertSparseEqualArray * - 3246 - `3f221f6d `_ - 2019-11-06 - xavier dupré - Merge pull request #277 from ABOTlegacy/spelling-grammar-doc-fixs * - 3245 - `b274a3ef `_ - 2019-11-04 - xavier dupré - Fixes #278, images2pdf * - 3244 - `c5a42629 `_ - 2019-11-04 - xavier dupré - Fix for azure devops * - 3243 - `47e3c248 `_ - 2019-11-01 - abotlegacy - Grammar and spelling fixes. * - 3242 - `046d6cc8 `_ - 2019-10-25 - xavier dupré - Fixes #276, make white transparent in an image * - 3240 - `8556cb69 `_ - 2019-10-21 - xavier dupré - Update HISTORY.rst * - 3239 - `296f6b1e `_ - 2019-10-21 - xavier dupré - fix jenkins * - 3238 - `03293f50 `_ - 2019-10-21 - xavier dupré - Update test_yaml.py * - 3237 - `1ee40865 `_ - 2019-10-21 - xavier dupré - Update .local.jenkins.lin.yml * - 3236 - `90a9a7e6 `_ - 2019-10-17 - xavier dupré - Update insetup_helper.py * - 3235 - `8c178170 `_ - 2019-10-17 - xavier dupré - Update .local.jenkins.lin.bug.yml * - 3234 - `327c082a `_ - 2019-10-11 - xavier dupré - Skip E731 * - 3233 - `e5a54202 `_ - 2019-10-09 - xavier dupré - Fixes #255, add six to the list of ignored module in _filter_out_warning * - 3232 - `3e24fbb0 `_ - 2019-09-30 - xavier dupré - reduce requirements * - 3231 - `e529d144 `_ - 2019-09-27 - xavier dupré - Update appveyor.yml * - 3230 - `2dc4162d `_ - 2019-09-26 - xavier dupré - Disable logging when registered a sphinx extension * - 3229 - `bdbce721 `_ - 2019-09-25 - xavier dupré - pep8 * - 3228 - `cc097894 `_ - 2019-09-23 - xavier dupré - update label in df2rst when they contain dot * - 3227 - `687d4962 `_ - 2019-09-22 - xavier dupré - Update HISTORY.rst * - 3226 - `21a05689 `_ - 2019-09-22 - xavier dupré - Add parameter min_size. * - 3225 - `e89c33a9 `_ - 2019-09-22 - xavier dupré - disable a couple of unit test on appveyor * - 3224 - `40bd1bf3 `_ - 2019-09-22 - xavier dupré - Update test_notebooks_exporter.py * - 3223 - `2bffa467 `_ - 2019-09-21 - xavier dupré - Update test_transfer_ftp_true.py * - 3222 - `4f42aec3 `_ - 2019-09-21 - xavier dupré - Better consistency between FTP and SFTP * - 3221 - `7025dbd1 `_ - 2019-09-20 - xavier dupré - catch another exception * - 3220 - `0a0d7708 `_ - 2019-09-20 - xavier dupré - Fix remaining bugs for sftp * - 3219 - `7ad16e2d `_ - 2019-09-19 - xavier dupré - Fixes for SFTP and mocking * - 3218 - `f342e2b9 `_ - 2019-09-19 - xavier dupré - Documentation, removes a couple of issues * - 3217 - `177dbe35 `_ - 2019-09-19 - xavier dupré - fix sftp transfer * - 3216 - `62dc7935 `_ - 2019-09-19 - xavier dupré - Update ftp_transfer.py * - 3215 - `a21a1632 `_ - 2019-09-19 - xavier dupré - Update ftp_transfer.py * - 3214 - `435033ac `_ - 2019-09-19 - xavier dupré - back to a lambda function * - 3213 - `0d327dfa `_ - 2019-09-19 - xavier dupré - fix ftp mocking * - 3212 - `ca4915c6 `_ - 2019-09-19 - xavier dupré - enable protocol SFTP * - 3211 - `267d700b `_ - 2019-09-16 - xavier dupré - add argument label_pattern to df2rst * - 3210 - `20a7ba2f `_ - 2019-09-15 - xavier dupré - fix missing logo * - 3209 - `2039bc41 `_ - 2019-09-12 - xavier dupré - disable documentation on azure pipeline * - 3208 - `60e89c55 `_ - 2019-09-07 - xavier dupré - Allow column_size to be a dictionary (rewrite a column size) * - 3207 - `a702a458 `_ - 2019-09-06 - xavier dupré - improves rendering of df2rst by filtering out empty rows * - 3206 - `1c227732 `_ - 2019-09-06 - xavier dupré - df2rst: add more unit test, handle :ref: in title section * - 3205 - `8bbd9abf `_ - 2019-09-05 - xavier dupré - Update azure-pipelines.yml * - 3204 - `9fdd1fbb `_ - 2019-09-05 - xavier dupré - Update appveyor.yml * - 3203 - `63010cde `_ - 2019-09-05 - xavier dupré - Fixes #272, add split_col to function df2rst * - 3202 - `7f954f90 `_ - 2019-09-05 - xavier dupré - update appveyor * - 3201 - `18b775b9 `_ - 2019-09-05 - xavier dupré - Fixes #271, add parameter split to function df2rst * - 3199 - `353c1243 `_ - 2019-09-02 - xavier dupré - fix scale issue * - 3198 - `8d1f1be9 `_ - 2019-09-02 - xavier dupré - Fixes #270, function to zoom_in + cli * - 3197 - `685e8caa `_ - 2019-09-01 - xavier dupré - Fixes #269, fix github links * - 3196 - `99160f6d `_ - 2019-09-01 - xavier dupré - impose a lambda function * - 3195 - `134a26f0 `_ - 2019-08-27 - xavier dupré - Fixes #268, better bool handling in create_cli_parser * - 3194 - `ca0f9f39 `_ - 2019-08-26 - xavier dupré - Update README.rst * - 3193 - `d6e9605f `_ - 2019-08-26 - xavier dupré - hides irrelevant errors when showing the result of a command line in the documentation * - 3192 - `1ea76cc4 `_ - 2019-08-26 - xavier dupré - Update HISTORY.rst * - 3191 - `2d0b1934 `_ - 2019-08-26 - xavier dupré - Fixes #267, add parameter to skip issues when building the history * - 3190 - `4bc6303a `_ - 2019-08-25 - xavier dupré - Fixes #266, possibility to change jenkins server url form the command line * - 3189 - `af34cd86 `_ - 2019-08-23 - xavier dupré - Update README.rst * - 3187 - `0eb3f36f `_ - 2019-08-02 - xavier dupré - Fix path when dumping notebook coverage * - 3186 - `fc5774b8 `_ - 2019-08-02 - xavier dupré - Update HISTORY.rst * - 3185 - `77334ca8 `_ - 2019-08-02 - xavier dupré - implements #264, add function unittest_require_at_lest * - 3184 - `3043df81 `_ - 2019-08-01 - xavier dupré - Update appveyor.yml * - 3183 - `659a77cf `_ - 2019-07-30 - xavier dupré - Fixes #263, skip plotly cells when extracting a snippet of a notebook * - 3182 - `cdf0ad5e `_ - 2019-07-21 - xavier dupré - Update appveyor.yml * - 3181 - `beb91e04 `_ - 2019-07-19 - xavier dupré - new links * - 3180 - `d6b279e9 `_ - 2019-07-17 - xavier dupré - update doc * - 3179 - `ec6d3afb `_ - 2019-07-17 - xavier dupré - add unknown_departure to sphinx_rst_builder * - 3178 - `eb23842a `_ - 2019-07-17 - xavier dupré - documentation, fix sphinx_rst_builder * - 3176 - `8954ebb3 `_ - 2019-07-17 - xavier dupré - Update test_exref_extension.py * - 3175 - `8dd6ac12 `_ - 2019-07-17 - xavier dupré - Fixes #262, issue with jupyter_sphinx * - 3174 - `070abee7 `_ - 2019-07-14 - xavier dupré - blog post * - 3173 - `be6008df `_ - 2019-07-13 - xavier dupré - Update appveyor.yml * - 3172 - `1ee5246a `_ - 2019-07-13 - xavier dupré - Update requirements.txt * - 3171 - `5adbf4be `_ - 2019-07-13 - xavier dupré - better coverage tuning * - 3170 - `d6aebde8 `_ - 2019-07-09 - xavier dupré - Fixes #261, add option store_in_file to runpython * - 3169 - `650028e6 `_ - 2019-07-09 - xavier dupré - Update sphinx_runpython_extension.py * - 3168 - `4712661a `_ - 2019-07-07 - xavier dupré - Update test_profiling.py * - 3167 - `103d68a8 `_ - 2019-07-05 - xavier dupré - Fixes #260, use of pyinstrument for profiling * - 3166 - `bd18acf7 `_ - 2019-07-03 - xavier dupré - better error message * - 3165 - `f9cad4b4 `_ - 2019-07-01 - xavier dupré - Update my-styles.css * - 3164 - `6f993756 `_ - 2019-06-30 - xavier dupré - fix misspelling * - 3163 - `74467a3e `_ - 2019-06-30 - xavier dupré - add parameter replacements in df2rst * - 3162 - `796d3936 `_ - 2019-06-29 - xavier dupré - update history * - 3161 - `c230e5f0 `_ - 2019-06-28 - xavier dupré - Fixes #259, unit test with capturing stdout, stderr * - 3160 - `4ce89774 `_ - 2019-06-27 - xavier dupré - Fixes #258, add parameters cls and positional to create_cli_parser * - 3159 - `fc9e2c14 `_ - 2019-06-22 - xavier dupré - improve conversion to rst * - 3158 - `6b9fe37e `_ - 2019-06-21 - xavier dupré - df2rst, nan as empty strings * - 3157 - `959f45bd `_ - 2019-06-19 - xavier dupré - catch logging, fix missing folder * - 3156 - `c7c83cef `_ - 2019-06-19 - xavier dupré - support local file viz.js for gdot extension * - 3155 - `162fcaad `_ - 2019-06-18 - xavier dupré - better error message, fix location of notebooks dumps * - 3154 - `d0d70bf7 `_ - 2019-06-18 - xavier dupré - Update HISTORY.rst * - 3153 - `f09a7552 `_ - 2019-06-18 - xavier dupré - Fixes #254, dot + vis.js * - 3152 - `1081fb25 `_ - 2019-06-17 - xavier dupré - remove one warning * - 3151 - `dd76eb56 `_ - 2019-06-16 - xavier dupré - fix issue with default value * - 3150 - `363a0b30 `_ - 2019-06-16 - xavier dupré - Fixes #253, improves link in exreflist * - 3149 - `dc16fe40 `_ - 2019-06-15 - xavier dupré - Fixes #252, expose parameter fexclude when building the documentation * - 3148 - `21fa7edd `_ - 2019-06-14 - xavier dupré - fix unit test * - 3147 - `34a7c4de `_ - 2019-06-14 - xavier dupré - improves function profile * - 3146 - `db2821f0 `_ - 2019-06-11 - xavier dupré - fix unit test * - 3145 - `9d108e79 `_ - 2019-06-11 - xavier dupré - Update .local.jenkins.lin.yml * - 3144 - `a46976b0 `_ - 2019-06-09 - xavier dupré - Update test_notebook_extension.py * - 3143 - `2c7ce773 `_ - 2019-06-07 - xavier dupré - Update azure-pipelines.yml * - 3142 - `65f06654 `_ - 2019-06-05 - xavier dupré - fix CI azure devops * - 3141 - `02a29265 `_ - 2019-06-04 - xavier dupré - Update HISTORY.rst * - 3140 - `178caaf8 `_ - 2019-06-04 - xavier dupré - Update .travis.yml * - 3139 - `80811af4 `_ - 2019-06-04 - xavier dupré - Fixes #250, fix sphinx to 2.1 * - 3138 - `2be30a82 `_ - 2019-06-04 - xavier dupré - improves robustness * - 3137 - `91b893a6 `_ - 2019-06-03 - xavier dupré - improves error message * - 3136 - `6d2e3085 `_ - 2019-06-03 - xavier dupré - Fixes #250, issues with sphinx 2.1 * - 3135 - `6b6916fa `_ - 2019-05-27 - xavier dupré - Update HISTORY.rst * - 3133 - `72c94da3 `_ - 2019-05-25 - xavier dupré - convert profile results into dataframes * - 3132 - `cbcd37ea `_ - 2019-05-25 - xavier dupré - move profing function in a separate file * - 3131 - `5310b206 `_ - 2019-05-19 - xavier dupré - Update _pylint_common.py * - 3130 - `f5e2427d `_ - 2019-05-17 - xavier dupré - CI * - 3129 - `1540b2e8 `_ - 2019-05-09 - xavier dupré - Update process_notebooks.py * - 3128 - `3d7af004 `_ - 2019-05-05 - xavier dupré - Update test_yaml.py * - 3127 - `081c2f37 `_ - 2019-05-05 - xavier dupré - update CI * - 3126 - `c72a8436 `_ - 2019-05-05 - xavier dupré - Fixes #248, add numpy_precision for runpython * - 3125 - `98564a5f `_ - 2019-05-04 - xavier dupré - Update sphinx_blocref_extension.py * - 3124 - `ea66672e `_ - 2019-05-04 - xavier dupré - Update sphinx_blocref_extension.py * - 3123 - `4766b8a7 `_ - 2019-05-04 - xavier dupré - Update test_yaml.py * - 3122 - `43037f37 `_ - 2019-05-04 - xavier dupré - better exception message * - 3121 - `3488357e `_ - 2019-04-30 - xavier dupré - fix indentation * - 3120 - `e90c9b96 `_ - 2019-04-30 - xavier dupré - remove one possible cause of exception * - 3119 - `fac81ed2 `_ - 2019-04-30 - xavier dupré - add an exception * - 3118 - `4f777778 `_ - 2019-04-25 - xavier dupré - pep8 * - 3117 - `4de9ea59 `_ - 2019-04-25 - xavier dupré - Fixes #247, first step * - 3116 - `47ef04e1 `_ - 2019-04-25 - xavier dupré - switch to history from a command line * - 3115 - `affbe9bc `_ - 2019-04-25 - xavier dupré - Add parameter check in call_setup_hook_cmd. * - 3114 - `6c0a88e6 `_ - 2019-04-25 - xavier dupré - Fixes for #246 * - 3113 - `25203e9e `_ - 2019-04-25 - xavier dupré - Fixes a crash issue with pandas * - 3112 - `a72fd71c `_ - 2019-04-25 - xavier dupré - pep8 * - 3111 - `6987523c `_ - 2019-04-25 - xavier dupré - Fixes for #246, checks whether src is used or not * - 3110 - `89cf4fab `_ - 2019-04-25 - xavier dupré - Fix unit test for #246 * - 3109 - `561c3bbe `_ - 2019-04-25 - xavier dupré - Fixes #246, support projects with no src folder * - 3108 - `80c7c6d1 `_ - 2019-04-25 - xavier dupré - enable package without src folder * - 3107 - `2a136684 `_ - 2019-04-23 - xavier dupré - better error message * - 3106 - `1e6bce28 `_ - 2019-04-23 - xavier dupré - Update test_check_pep8_sample.py * - 3105 - `e8f5431f `_ - 2019-04-16 - xavier dupré - fix missing module in requirements * - 3104 - `80b7f50e `_ - 2019-04-16 - xavier dupré - update documentation style * - 3103 - `580d2183 `_ - 2019-04-07 - xavier dupré - pep8 * - 3102 - `d288345b `_ - 2019-04-06 - xavier dupré - Update test_SKIP_github_api.py * - 3101 - `988bcf8b `_ - 2019-04-06 - xavier dupré - Update test_SKIP_github_api.py * - 3100 - `1fc8977a `_ - 2019-04-06 - xavier dupré - documentation, fix broken link * - 3099 - `0a6ded16 `_ - 2019-04-06 - xavier dupré - Fixes #50, #51, command line to run a notebook, add a warning if output is empty for cmdref * - 3098 - `ad80b77b `_ - 2019-04-04 - xavier dupré - copies extensions .pyx as well * - 3097 - `db67f639 `_ - 2019-04-02 - xavier dupré - fix path when import conf.py * - 3096 - `0be661c3 `_ - 2019-04-02 - xavier dupré - removes unused code * - 3095 - `aaf67fad `_ - 2019-04-01 - xavier dupré - Update sphinx_blog_extension.py * - 3094 - `6d7702ef `_ - 2019-03-31 - xavier dupré - disable support for sphinx 1.7 * - 3093 - `6381cbcd `_ - 2019-03-31 - xavier dupré - fix for sphinx 1.7 * - 3092 - `552d8c3a `_ - 2019-03-31 - xavier dupré - Update test_call_setup_hook.py * - 3091 - `c7b215d4 `_ - 2019-03-31 - xavier dupré - fixes for sphinx 1.7 * - 3090 - `9757b32d `_ - 2019-03-31 - xavier dupré - update for sphinx 1.7 * - 3089 - `f9291c13 `_ - 2019-03-31 - xavier dupré - delay import * - 3088 - `54cc953c `_ - 2019-03-31 - xavier dupré - update for sphinx 1.7 * - 3087 - `5fbed288 `_ - 2019-03-31 - xavier dupré - Update sphinxm_convert_doc_sphinx_helper.py * - 3086 - `d64c95ac `_ - 2019-03-31 - xavier dupré - Update sphinxm_convert_doc_sphinx_helper.py * - 3085 - `d44ac8e7 `_ - 2019-03-30 - xavier dupré - fixes for sphinx 1.7, 1.8 * - 3084 - `91d0b586 `_ - 2019-03-30 - xavier dupré - update jenkins jobs * - 3083 - `6f8c7f40 `_ - 2019-03-30 - xavier dupré - fixes for sphinx 1.8 * - 3082 - `0c2855d1 `_ - 2019-03-30 - xavier dupré - Fix for sphinx 1.8 * - 3081 - `6c12d181 `_ - 2019-03-30 - xavier dupré - fix CI * - 3080 - `f2d00371 `_ - 2019-03-30 - xavier dupré - add permissive import * - 3079 - `eeeef083 `_ - 2019-03-30 - xavier dupré - update CI * - 3078 - `6c64e9fe `_ - 2019-03-30 - xavier dupré - Removes any app.info * - 3077 - `44f04b20 `_ - 2019-03-30 - xavier dupré - Other fix for #245 * - 3076 - `610f9b62 `_ - 2019-03-30 - xavier dupré - Other fixes for #245 * - 3075 - `5ba83f13 `_ - 2019-03-30 - xavier dupré - Fixes #245, sphinx 2.0 * - 3074 - `c370c125 `_ - 2019-03-30 - xavier dupré - remove domains from the list of default parameters * - 3073 - `a7451da0 `_ - 2019-03-29 - xavier dupré - Removes recursive affectation * - 3070 - `46955dee `_ - 2019-03-26 - xavier dupré - skips history with title [removed] or [WIP] * - 3069 - `f6c1396c `_ - 2019-03-26 - xavier dupré - Update HISTORY.rst * - 3068 - `c68f6ae4 `_ - 2019-03-25 - xavier dupré - better help message for the setup * - 3067 - `a8db6b4b `_ - 2019-03-25 - xavier dupré - fixes missing names, skip lines marked with # noqa * - 3066 - `99197585 `_ - 2019-03-25 - xavier dupré - disable copy of sphinx template * - 3065 - `800e64d3 `_ - 2019-03-23 - xavier dupré - minor fixes for sphinx * - 3064 - `eb170892 `_ - 2019-03-23 - xavier dupré - history * - 3063 - `4d0d5da1 `_ - 2019-03-23 - xavier dupré - disable unit test on appveyor * - 3062 - `b5f37ff7 `_ - 2019-03-23 - xavier dupré - fix coverage report * - 3061 - `434190a5 `_ - 2019-03-23 - xavier dupré - Update test_LONG_full_unit_test_module_template.py * - 3060 - `7289bbe7 `_ - 2019-03-23 - xavier dupré - fix missing variable * - 3059 - `cece9d9f `_ - 2019-03-23 - xavier dupré - documentation, update unit test * - 3058 - `d1fac2da `_ - 2019-03-23 - xavier dupré - Update coverage_helper.py * - 3057 - `77bb0b0b `_ - 2019-03-23 - xavier dupré - Update test_LONG_full_unit_test_module_template.py * - 3056 - `e7d4810a `_ - 2019-03-23 - xavier dupré - Fixes a couple of bugs during documentation generation * - 3055 - `89f2d233 `_ - 2019-03-23 - xavier dupré - a few fixes * - 3054 - `9ad283a4 `_ - 2019-03-23 - xavier dupré - Update coverage_helper.py * - 3053 - `5ca30aea `_ - 2019-03-23 - xavier dupré - Update coverage_helper.py * - 3052 - `9ab1b170 `_ - 2019-03-23 - xavier dupré - more information for a failure * - 3051 - `27d43f0d `_ - 2019-03-23 - xavier dupré - reorder function * - 3050 - `4db577e8 `_ - 2019-03-23 - xavier dupré - Update test_missing_function_helpgen.py * - 3049 - `993e575a `_ - 2019-03-22 - xavier dupré - Update process_script.py * - 3048 - `d8d3ff6a `_ - 2019-03-22 - xavier dupré - Update process_script.py * - 3047 - `e5e63678 `_ - 2019-03-22 - xavier dupré - fixes for linux * - 3046 - `90bfe38c `_ - 2019-03-22 - xavier dupré - update path * - 3045 - `3acf3af7 `_ - 2019-03-22 - xavier dupré - improves documentation process * - 3044 - `62b2ba4e `_ - 2019-03-22 - xavier dupré - add class python_path_append * - 3043 - `3e55bc2f `_ - 2019-03-22 - xavier dupré - exception to warnings * - 3042 - `fdfdc155 `_ - 2019-03-22 - xavier dupré - update unit tests * - 3041 - `f7e19a18 `_ - 2019-03-21 - xavier dupré - fixes remaining unitest * - 3040 - `3338dcf4 `_ - 2019-03-21 - xavier dupré - fix coverage report * - 3039 - `bcccf6b0 `_ - 2019-03-21 - xavier dupré - Update test_cmdref_extension.py * - 3038 - `82613a0e `_ - 2019-03-21 - xavier dupré - fix unit tests * - 3037 - `fe52e4f6 `_ - 2019-03-21 - xavier dupré - update project * - 3036 - `16766e7e `_ - 2019-03-21 - xavier dupré - Update test_cmdref_extension.py * - 3035 - `fdbd0f71 `_ - 2019-03-21 - xavier dupré - fix pythonpath * - 3034 - `eeb8a48f `_ - 2019-03-21 - xavier dupré - fix misspelling * - 3033 - `6f8ceb93 `_ - 2019-03-21 - xavier dupré - pep8 * - 3032 - `96736fb3 `_ - 2019-03-21 - xavier dupré - Update test_cmdref_extension.py * - 3031 - `de8595ed `_ - 2019-03-21 - xavier dupré - Update test_cmdref_extension.py * - 3030 - `dd4fcf16 `_ - 2019-03-21 - xavier dupré - update builds * - 3029 - `aea13513 `_ - 2019-03-21 - xavier dupré - fix unit test * - 3028 - `fcf68b1a `_ - 2019-03-21 - xavier dupré - fix unit test * - 3027 - `f024844f `_ - 2019-03-21 - xavier dupré - fix CI * - 3026 - `87ff0da2 `_ - 2019-03-21 - xavier dupré - Update test_full_unit_test_module_template.py * - 3025 - `6171c153 `_ - 2019-03-21 - xavier dupré - update unit test sys_path * - 3024 - `8eec3540 `_ - 2019-03-21 - xavier dupré - Update utils_tests_private.py * - 3023 - `1e4d5b07 `_ - 2019-03-20 - xavier dupré - fix a bug in sys_path_append * - 3022 - `0e8881ba `_ - 2019-03-20 - xavier dupré - do not check for unittest.py * - 3021 - `e56572d8 `_ - 2019-03-20 - xavier dupré - better handling of sys.path manipulations * - 3020 - `f1d2b553 `_ - 2019-03-20 - xavier dupré - better error message * - 3019 - `9fdd1674 `_ - 2019-03-20 - xavier dupré - improves error message * - 3018 - `6ab13814 `_ - 2019-03-20 - xavier dupré - update documentation version * - 3017 - `ed3b92f1 `_ - 2019-03-20 - xavier dupré - fix failing unit test * - 3016 - `a8dfe371 `_ - 2019-03-20 - xavier dupré - update CI * - 3015 - `f32b741a `_ - 2019-03-20 - xavier dupré - remove function fix_pip_902 * - 3014 - `265c31ac `_ - 2019-03-20 - xavier dupré - Fixes #243, refactor unit tests, upgrade version to 1.9 * - 3013 - `55c4ceca `_ - 2019-03-19 - xavier dupré - Better error message, clean pyd, pxd files * - 3012 - `0273b89f `_ - 2019-03-17 - xavier dupré - Improves function to convert a rst file into html * - 3011 - `ad45281b `_ - 2019-03-17 - xavier dupré - Change an exception into a logging in toctree extension * - 3009 - `4a683864 `_ - 2019-03-17 - xavier dupré - Update test_git_helper.py * - 3008 - `a73ceef2 `_ - 2019-03-17 - xavier dupré - Update test_gitlog_extension.py * - 3007 - `2aaa4576 `_ - 2019-03-17 - xavier dupré - Fixes #239, add directive gitlog * - 3006 - `8e935757 `_ - 2019-03-16 - xavier dupré - Update test_code_style.py * - 3005 - `1d7601d4 `_ - 2019-03-16 - xavier dupré - fix mispelling, remove link to waffle * - 3004 - `12493392 `_ - 2019-03-16 - xavier dupré - fix unit test * - 3003 - `54666794 `_ - 2019-03-16 - xavier dupré - Update utils_tests_private.py * - 3002 - `2b923f5e `_ - 2019-03-16 - xavier dupré - rename dir into folder, add one unit test * - 3001 - `d02b1893 `_ - 2019-03-16 - xavier dupré - fix unit test replacing relative imports * - 3000 - `59db3c62 `_ - 2019-03-16 - xavier dupré - Fixes #242, add command line sphinx_rst * - 2999 - `810113af `_ - 2019-03-14 - xavier dupré - add scheduler=NONE for jenkins * - 2998 - `778fa960 `_ - 2019-03-13 - xavier dupré - replaces \n by space in function df2rst * - 2997 - `5c3d1998 `_ - 2019-03-12 - xavier dupré - better error message * - 2996 - `42855fd6 `_ - 2019-03-12 - xavier dupré - fix wrong import * - 2995 - `d42f7abf `_ - 2019-03-12 - xavier dupré - fix unit test broken after the addition of many delayed import * - 2994 - `35bf2c21 `_ - 2019-03-12 - xavier dupré - Fix missing import * - 2993 - `19369337 `_ - 2019-03-12 - xavier dupré - Reduce execution time for basic imports + blog post * - 2992 - `79e1903e `_ - 2019-03-12 - xavier dupré - more compact * - 2991 - `9177a8e3 `_ - 2019-03-12 - xavier dupré - Update default_conf.py * - 2990 - `41d34f62 `_ - 2019-03-09 - xavier dupré - do not stop on some errors * - 2989 - `26c3f831 `_ - 2019-03-07 - xavier dupré - blog post * - 2988 - `2fd9b1b9 `_ - 2019-03-04 - xavier dupré - Fixes #240, update to deal with more complex condition instructions * - 2987 - `ed69357f `_ - 2019-03-04 - xavier dupré - Disable on test on azure pipeline (weird error) * - 2986 - `4095496c `_ - 2019-03-02 - xavier dupré - Remove dependency on nbconvert git * - 2985 - `9d759507 `_ - 2019-03-02 - xavier dupré - Fix nbconvert dependency * - 2984 - `8e46f4cd `_ - 2019-03-02 - xavier dupré - Fix for circleCI * - 2983 - `7596ed97 `_ - 2019-03-02 - xavier dupré - Add more options to load bokeh extension when needed in local rst compilation * - 2982 - `77352106 `_ - 2019-03-02 - xavier dupré - Fixes #216 in another way (created a custom branch at https://github.com/sdpython/nbconvert/tree/fixes) * - 2980 - `e6ae21e6 `_ - 2019-03-01 - xavier dupré - Update requirements.txt * - 2979 - `9eeba53f `_ - 2019-03-01 - xavier dupré - Fixes #236, remove automated import of bokeh * - 2978 - `e5a91eae `_ - 2019-02-28 - xavier dupré - Fixes #237, add parameter number_format to df2rst * - 2976 - `7a91bc65 `_ - 2019-02-23 - xavier dupré - hides some warnings when running unit tests * - 2975 - `48e86224 `_ - 2019-02-21 - xavier dupré - Fixes #234, copy rss.xml a second time * - 2974 - `eefcf75e `_ - 2019-02-16 - xavier dupré - Skips a unit test on mac osx * - 2973 - `9b7965e4 `_ - 2019-02-16 - xavier dupré - history * - 2972 - `efd5d151 `_ - 2019-02-16 - xavier dupré - Update README.rst * - 2971 - `50ec1e28 `_ - 2019-02-16 - xavier dupré - cathc exception * - 2970 - `131bd0b4 `_ - 2019-02-14 - xavier dupré - fix nbconvert to 5.3.0 * - 2969 - `40ed94fd `_ - 2019-02-14 - xavier dupré - nbconvert 5.4.1 still does not include fix for svg * - 2968 - `7d5165c0 `_ - 2019-02-14 - xavier dupré - fix for sphinx 1.7 * - 2967 - `7437b4c3 `_ - 2019-02-14 - xavier dupré - Fixes #233, add a function to run test function + cli * - 2966 - `07b22621 `_ - 2019-02-06 - xavier dupré - syntax * - 2965 - `2e82dc21 `_ - 2019-02-06 - xavier dupré - pep8 * - 2964 - `2726c847 `_ - 2019-02-06 - xavier dupré - Update _pylint_common.py * - 2963 - `b64733be `_ - 2019-02-06 - xavier dupré - Update test_yaml.py * - 2962 - `207a0325 `_ - 2019-02-06 - xavier dupré - Update _pylint_common.py * - 2961 - `7612ce1d `_ - 2019-02-04 - xavier dupré - better error message * - 2960 - `d07d35d0 `_ - 2019-01-28 - xavier dupré - Fixes #232, missing blog posts between two pages * - 2959 - `bbc61686 `_ - 2019-01-28 - xavier dupré - Fix for pandas 0.24 * - 2958 - `02083e12 `_ - 2019-01-25 - xavier dupré - missing parameter fixed * - 2957 - `7acd78a9 `_ - 2019-01-25 - xavier dupré - fix a test on azure pipelines * - 2956 - `a4dabc98 `_ - 2019-01-25 - xavier dupré - pep8 * - 2955 - `989cb2a0 `_ - 2019-01-25 - xavier dupré - fix for pip >= 19.0 * - 2954 - `2f530da5 `_ - 2019-01-24 - xavier dupré - pep8 * - 2953 - `5a7a50f4 `_ - 2019-01-24 - xavier dupré - catch another exception * - 2952 - `32a13af0 `_ - 2019-01-19 - xavier dupré - Fixes #230, autosignature for C++ functions * - 2951 - `d185f354 `_ - 2019-01-18 - xavier dupré - better error message * - 2949 - `094e740c `_ - 2019-01-12 - xavier dupré - pep8 * - 2948 - `b148c33b `_ - 2019-01-12 - xavier dupré - add missing module * - 2947 - `c1a5f24d `_ - 2019-01-12 - xavier dupré - Update test_SKIP_gitjs_run_notebooks.py * - 2946 - `5a1286e2 `_ - 2019-01-12 - xavier dupré - Split unit tests * - 2945 - `94a736a8 `_ - 2019-01-12 - xavier dupré - disable on cell for execution * - 2944 - `9e724ce7 `_ - 2019-01-12 - xavier dupré - Update git_dataframes.ipynb * - 2943 - `077b6217 `_ - 2019-01-12 - xavier dupré - Changes for macosx + remove code for python2 * - 2942 - `13955465 `_ - 2019-01-12 - xavier dupré - fix inherintance in unit test * - 2941 - `e111abfb `_ - 2019-01-12 - xavier dupré - fix issues on macosx * - 2940 - `27c881cd `_ - 2019-01-12 - xavier dupré - pep8 * - 2939 - `5850ce30 `_ - 2019-01-12 - xavier dupré - Fix #229, remove specific code for python2 * - 2938 - `3e439f14 `_ - 2019-01-11 - xavier dupré - Update azure-pipelines.yml * - 2937 - `efa78ea7 `_ - 2019-01-11 - xavier dupré - skip notebooks in .pynb_checkpoints * - 2936 - `7055f448 `_ - 2019-01-10 - xavier dupré - Fix unit tests * - 2935 - `580b868e `_ - 2019-01-10 - xavier dupré - Add more testing on notebooks * - 2934 - `6e678cc3 `_ - 2019-01-10 - xavier dupré - Update azure-pipelines.yml * - 2933 - `59724729 `_ - 2019-01-10 - xavier dupré - Update azure-pipelines.yml * - 2932 - `44a0cb07 `_ - 2019-01-10 - xavier dupré - disable one test one azure * - 2931 - `f834e60c `_ - 2019-01-09 - xavier dupré - Improves negative pattern in enumerate_notebooks_link * - 2930 - `25988bee `_ - 2019-01-09 - xavier dupré - Fixes #228, fix missing jpg images in documentation * - 2929 - `7fa8573e `_ - 2019-01-08 - xavier dupré - Update setup.py due to issue 216 * - 2928 - `d449557d `_ - 2019-01-08 - xavier dupré - License * - 2927 - `8138ad1e `_ - 2019-01-08 - xavier dupré - Fix incoherent logging message * - 2926 - `09eacc13 `_ - 2019-01-08 - xavier dupré - Fixes #227, exposes command line ls * - 2925 - `bd174241 `_ - 2019-01-08 - xavier dupré - Fixes #226, fixes parser name in command line * - 2924 - `495494d6 `_ - 2019-01-07 - xavier dupré - pep8 * - 2922 - `b5edf295 `_ - 2019-01-07 - xavier dupré - Fixes #225, add class BufferedPrint * - 2921 - `4490d59a `_ - 2019-01-07 - xavier dupré - Add unit test for #224. * - 2920 - `70b7929a `_ - 2019-01-07 - xavier dupré - Fix failing command line * - 2919 - `f922eaf9 `_ - 2019-01-06 - xavier dupré - Fixes #224, add process_notebooks as a command line * - 2918 - `fce4ac87 `_ - 2019-01-04 - xavier dupré - Fix #223, handle linux condition in yaml files * - 2917 - `b1262b18 `_ - 2019-01-03 - xavier dupré - Fix #222, fix cleanup options for jenkins conf jobs * - 2916 - `e3735ef7 `_ - 2019-01-02 - xavier dupré - Fixes #221, ignore errors when merging reports, ignore HTML files * - 2915 - `2010087a `_ - 2019-01-02 - xavier dupré - pep8 * - 2914 - `1d0b4e37 `_ - 2019-01-01 - xavier dupré - pep8 * - 2913 - `d4d5c1dd `_ - 2019-01-01 - xavier dupré - Update HISTORY.rst * - 2912 - `854c1091 `_ - 2019-01-01 - xavier dupré - Update test_yaml.py * - 2911 - `b750ea99 `_ - 2019-01-01 - xavier dupré - update CI * - 2910 - `3eafe784 `_ - 2019-01-01 - xavier dupré - Remove nbsphinx * - 2909 - `42eeea98 `_ - 2019-01-01 - xavier dupré - Update fix two failing unit tests * - 2908 - `6405a385 `_ - 2018-12-31 - xavier dupré - update python version on CI * - 2907 - `7034881a `_ - 2018-12-31 - xavier dupré - Fixes failing unit tests (tkinter, runpython) * - 2906 - `4f70389a `_ - 2018-12-31 - xavier dupré - better error message * - 2905 - `3f93c728 `_ - 2018-12-31 - xavier dupré - update latex preamble * - 2904 - `1f2c3009 `_ - 2018-12-31 - xavier dupré - Fixes #220, GUI for command line * - 2903 - `c7022816 `_ - 2018-12-31 - xavier dupré - Fixes #219, changes default value for negative pattern before cleaning files * - 2902 - `1687468f `_ - 2018-12-30 - xavier dupré - better error message * - 2901 - `95cd1f0f `_ - 2018-12-30 - xavier dupré - update style skipping constraints * - 2900 - `172bc1d7 `_ - 2018-12-29 - xavier dupré - Fix rst quote output * - 2899 - `a0b85502 `_ - 2018-12-21 - xavier dupré - hide year * - 2898 - `5363c4f4 `_ - 2018-12-21 - xavier dupré - add date, index to quote directive * - 2897 - `e316bc13 `_ - 2018-12-20 - xavier dupré - Fixes #217, remove unnecessary comments, improve .. quote * - 2896 - `74471e5d `_ - 2018-12-18 - xavier dupré - Fixes two failing unit test + documentation * - 2895 - `312422fa `_ - 2018-12-18 - xavier dupré - Fixes #216, nbconvert!=5.4.0 * - 2894 - `2437eed8 `_ - 2018-12-16 - xavier dupré - fixes unit test, pep8 * - 2893 - `88afa2a8 `_ - 2018-12-16 - xavier dupré - add quote node * - 2891 - `b20d39e9 `_ - 2018-12-16 - xavier dupré - less log for downlink * - 2890 - `d9742552 `_ - 2018-12-16 - xavier dupré - Process more id for youtube urls * - 2889 - `3d7376d8 `_ - 2018-12-12 - xavier dupré - Revert "Fix automated command line on linux" * - 2888 - `53953c73 `_ - 2018-12-12 - xavier dupré - Fix automated command line on linux * - 2887 - `d76ff55e `_ - 2018-12-11 - xavier dupré - Fix #214, neg_pattern in explore_folder_iterfile * - 2886 - `a08129a7 `_ - 2018-12-10 - xavier dupré - Fixes #213, remove cmdref in function exposed as command line * - 2885 - `afe268fb `_ - 2018-12-09 - xavier dupré - Fixes #212 about default None value when creating a parser for a function * - 2883 - `ea34e2cc `_ - 2018-12-05 - xavier dupré - Fixes #211, add git tag to the script automatically generated on windows * - 2882 - `23013f57 `_ - 2018-11-30 - xavier dupré - Skip one more warning W0107 * - 2881 - `18503115 `_ - 2018-11-30 - xavier dupré - Update test_pyq_sync_cli.py * - 2880 - `e3bd3624 `_ - 2018-11-29 - xavier dupré - Fix a path for unit test CI * - 2879 - `9e932b4b `_ - 2018-11-29 - xavier dupré - Documentation, tutorial for #210 * - 2878 - `e7881e6c `_ - 2018-11-29 - xavier dupré - Update unit test, remove \r * - 2877 - `c85558dd `_ - 2018-11-29 - xavier dupré - Fixes #210, add also command to clean files * - 2876 - `92a9ff29 `_ - 2018-11-25 - xavier dupré - Update history, disable a couple of unit tests on azurepipeline * - 2875 - `bdb3e815 `_ - 2018-11-25 - xavier dupré - Fixes #209, add function retrieve_notebooks_in_folder * - 2874 - `c9dd8543 `_ - 2018-11-23 - xavier dupré - update ci * - 2873 - `15b75085 `_ - 2018-11-23 - xavier dupré - Update azure-pipelines.yml * - 2872 - `2b1ebc69 `_ - 2018-11-23 - xavier dupré - Update azure-pipelines.yml * - 2871 - `d85f6092 `_ - 2018-11-23 - xavier dupré - azure pipeline * - 2870 - `bc9d7acc `_ - 2018-11-22 - xavier dupré - Fixes for azure pipeline * - 2869 - `8f8722b0 `_ - 2018-11-22 - xavier dupré - Update azure-pipelines.yml * - 2868 - `e52e4452 `_ - 2018-11-21 - xavier dupré - update ci * - 2867 - `9ab56004 `_ - 2018-11-21 - xavier dupré - Update azure pipelines * - 2866 - `75ae4eed `_ - 2018-11-21 - xavier dupré - More logging, documentation, azure-pipelines * - 2865 - `cc8c7501 `_ - 2018-11-21 - xavier dupré - ci * - 2864 - `b53b9d6d `_ - 2018-11-21 - xavier dupré - azure pipe + bug in circleci (investigation) * - 2863 - `185ee8a7 `_ - 2018-11-21 - xavier dupré - Add method skip azure for #208 * - 2862 - `24cdc66e `_ - 2018-11-21 - xavier dupré - Update azure-pipelines.yml * - 2861 - `8c53f2ed `_ - 2018-11-21 - xavier dupré - Update for azure pipeline * - 2860 - `694b75bc `_ - 2018-11-20 - xavier dupré - Update azure-pipelines.yml * - 2859 - `17508376 `_ - 2018-11-20 - xavier dupré - Update azure-pipelines.yml * - 2858 - `9ead772a `_ - 2018-11-20 - xavier dupré - Update azure-pipelines.yml * - 2857 - `456db86b `_ - 2018-11-20 - xavier dupré - Update azure-pipelines.yml * - 2856 - `546c7ed4 `_ - 2018-11-20 - xavier dupré - Add azure ci * - 2855 - `70cc3180 `_ - 2018-11-20 - xavier dupré - Set up CI with Azure Pipelines * - 2853 - `6f7fb262 `_ - 2018-11-14 - xavier dupré - Better logging in cli_helper * - 2850 - `e641cc52 `_ - 2018-11-10 - xavier dupré - Update error message in unit test * - 2849 - `793782a4 `_ - 2018-11-09 - xavier dupré - Update _unittests/ut_helpgen/test_full_documentation_module_template.py * - 2848 - `e1c6b03c `_ - 2018-11-09 - xavier dupré - Update _unittests/ut_helpgen/test_full_documentation_module_template.py * - 2847 - `dcf0cc6e `_ - 2018-11-09 - xavier dupré - Update _unittests/ut_helpgen/test_full_documentation_module_template.py * - 2846 - `0107541f `_ - 2018-11-09 - xavier dupré - Update _unittests/ut_helpgen/test_full_documentation_module_template.py * - 2845 - `cb42694e `_ - 2018-11-09 - xavier dupré - Update _unittests/ut_helpgen/test_full_documentation_module_template.py * - 2844 - `e0bea475 `_ - 2018-11-09 - xavier dupré - Update src/pyquickhelper/sphinxext/sphinx_downloadlink_extension.py * - 2843 - `7d1a00c8 `_ - 2018-11-09 - xavier dupré - Exception into a warning. * - 2842 - `32a7f4a5 `_ - 2018-11-09 - xavier dupré - Disable one import for sphinx 1.7 * - 2841 - `d3231dfe `_ - 2018-11-09 - xavier dupré - fix type issue * - 2840 - `13475d30 `_ - 2018-11-09 - xavier dupré - Fix missing file when exporting notebooks as slides. * - 2839 - `2eac9c3a `_ - 2018-11-09 - xavier dupré - fix unit test * - 2838 - `91fd00cc `_ - 2018-11-09 - xavier dupré - Fix bugs in md, rst translation * - 2837 - `757ad8d8 `_ - 2018-11-09 - xavier dupré - Fixes #205, add directive downloadlink * - 2836 - `9ebb3cd1 `_ - 2018-11-06 - xavier dupré - Fixes #204, missing notebook snippet * - 2835 - `496ec500 `_ - 2018-11-05 - xavier dupré - Fixes #203, epkg does not generate warnings about duplicated links * - 2834 - `c8f93a10 `_ - 2018-11-02 - xavier dupré - Fixes #202, keep context between two runs of runpython * - 2832 - `c6c84103 `_ - 2018-11-01 - xavier dupré - Fixes #201, option language (runpython, rst) * - 2831 - `dfa4b4b4 `_ - 2018-10-28 - xavier dupré - pep8 * - 2830 - `19532489 `_ - 2018-10-28 - xavier dupré - Fixes #200, do not fix issue E402 about misplaced imports * - 2829 - `ac746e4a `_ - 2018-10-24 - xavier dupré - Removes fLOG in one unit test, update one url * - 2828 - `376d3f77 `_ - 2018-10-24 - xavier dupré - Fix markdown output for references (sphinx) * - 2827 - `0e5264e3 `_ - 2018-10-14 - xavier dupré - Fix broken unit test in test_doc_page * - 2826 - `529557da `_ - 2018-10-14 - xavier dupré - Update HISTORY.rst * - 2825 - `c2a04a30 `_ - 2018-10-14 - xavier dupré - Fix broken unit test * - 2824 - `25ab945b `_ - 2018-10-14 - xavier dupré - fixes too much text in md, rst builders for hyperlinks * - 2823 - `8fbd6fb7 `_ - 2018-10-14 - xavier dupré - Fixes #198, #199, documentation, and fixes for the documentation * - 2822 - `e6ecdb02 `_ - 2018-10-10 - xavier dupré - fixes find_dvipng_path when latex is not found * - 2821 - `5c8d2b5a `_ - 2018-10-06 - xavier dupré - update history * - 2820 - `c172a580 `_ - 2018-10-06 - xavier dupré - do not raise an exception if latex is not found on windows and function rst2html * - 2819 - `7acc2751 `_ - 2018-10-04 - xavier dupré - update regular expressions for #196 * - 2818 - `cfeb3b69 `_ - 2018-10-04 - xavier dupré - Fixes #196, add rst links in docstrings * - 2817 - `3364b25e `_ - 2018-09-23 - xavier dupré - add new message comm_close to catch an exception when running a notebook * - 2816 - `080eea83 `_ - 2018-09-23 - xavier dupré - rename find_dvipng_path into find_divpng_path * - 2815 - `f8283d7e `_ - 2018-09-23 - xavier dupré - better error message * - 2814 - `95eee934 `_ - 2018-09-22 - xavier dupré - better style * - 2813 - `0484e35d `_ - 2018-09-22 - xavier dupré - restore missing latex final build * - 2812 - `c89c480a `_ - 2018-09-22 - xavier dupré - propagate tag download for images in sphinx_rst_builder * - 2811 - `14b7d093 `_ - 2018-09-21 - xavier dupré - fix issues with Latex builder not writing on disk * - 2810 - `82453005 `_ - 2018-09-20 - xavier dupré - extends unit tests coverage * - 2809 - `7d0fd131 `_ - 2018-09-20 - xavier dupré - fix for sphinx 1.7 * - 2808 - `8b5f89d6 `_ - 2018-09-20 - xavier dupré - fix a stupid copy paste * - 2807 - `956d9a50 `_ - 2018-09-20 - xavier dupré - update unit test, remove unnecessary lines * - 2806 - `df379a45 `_ - 2018-09-20 - xavier dupré - add one unit test, remove meaningless log lines * - 2805 - `bf2d3389 `_ - 2018-09-20 - xavier dupré - remove empty lines after unit tests * - 2804 - `15ea8bd7 `_ - 2018-09-20 - xavier dupré - fixes for sphinx 1.7 * - 2803 - `ba653a95 `_ - 2018-09-20 - xavier dupré - fix a mistakes on variables names * - 2802 - `8266e145 `_ - 2018-09-20 - xavier dupré - remove warnings * - 2801 - `a7505d2a `_ - 2018-09-20 - xavier dupré - many fixes to have sphinx 1.8 and 1.7 work with pyquickhelper * - 2800 - `368d770c `_ - 2018-09-20 - xavier dupré - remove references to matplotlib.sphinxext.only_directives * - 2799 - `ce99c733 `_ - 2018-09-20 - xavier dupré - update travis * - 2798 - `a7167a5f `_ - 2018-09-20 - xavier dupré - fix unit test + update travis * - 2797 - `ad32c4f0 `_ - 2018-09-20 - xavier dupré - fix unit test impacted by previous changes * - 2796 - `90d589f0 `_ - 2018-09-20 - xavier dupré - Implements #195, fixes for #194, both about sphinx builders * - 2795 - `e75a0c1c `_ - 2018-09-19 - xavier dupré - update travis * - 2794 - `5dc3289d `_ - 2018-09-19 - xavier dupré - Fixes #194 about sphinx extensions * - 2793 - `9a3795ca `_ - 2018-09-19 - xavier dupré - epub, not epub * - 2792 - `d9ed32d8 `_ - 2018-09-19 - xavier dupré - Another fix for #194 * - 2791 - `38b18273 `_ - 2018-09-19 - xavier dupré - First fix for #194, use updated copy paste from sphinx 1.8 * - 2790 - `169f2166 `_ - 2018-09-17 - xavier dupré - Fixes #193, issue with str(obj) when obj from werzeug * - 2789 - `c5524a8e `_ - 2018-09-17 - xavier dupré - filter out one more warning in setup.py * - 2788 - `ffb6a11a `_ - 2018-09-16 - xavier dupré - fix broken unit test due to history update * - 2787 - `85eb7356 `_ - 2018-09-16 - xavier dupré - documentation and history * - 2786 - `b24b9228 `_ - 2018-09-16 - xavier dupré - Fixes for#191, #192 * - 2785 - `5cb16323 `_ - 2018-09-16 - xavier dupré - Fixes for #191, #192 * - 2784 - `6964675a `_ - 2018-09-16 - xavier dupré - Fixes for #191, #192 (sphinx, latex, 1.8) * - 2783 - `475fe748 `_ - 2018-09-15 - xavier dupré - strip / --> rstrip / * - 2782 - `1d607500 `_ - 2018-09-15 - xavier dupré - Fixes for #192, #191, images and sphinx * - 2781 - `9260964d `_ - 2018-09-15 - xavier dupré - Fixes #80, assert option for runpython sphinx directive * - 2780 - `8d2f97cc `_ - 2018-09-15 - xavier dupré - better behavior for rst and md builder * - 2779 - `2dc8fd51 `_ - 2018-09-14 - xavier dupré - Many fixes for #191, #190 * - 2778 - `729933ba `_ - 2018-09-14 - xavier dupré - fix missing import * - 2777 - `2df034d2 `_ - 2018-09-14 - xavier dupré - fix missing import * - 2776 - `28c520cd `_ - 2018-09-14 - xavier dupré - remove warnings, back to latex and not elatex for notebook * - 2775 - `5b070130 `_ - 2018-09-14 - xavier dupré - implements #191, latex custom builder * - 2774 - `d5f38b8c `_ - 2018-09-13 - xavier dupré - Fixes #190, upgrade to Sphinx 1.8 * - 2773 - `7cc9220e `_ - 2018-09-13 - xavier dupré - Fixes for #189 , Sphinx 1.8.0 * - 2772 - `1193852b `_ - 2018-09-12 - xavier dupré - Fixes #188, images for md and rst * - 2771 - `9299a3b7 `_ - 2018-09-11 - xavier dupré - replaces rst in md for md outputter * - 2770 - `794664e1 `_ - 2018-09-09 - xavier dupré - add title on toc tree forr blog post * - 2769 - `a0cf581d `_ - 2018-09-09 - xavier dupré - add unit test for #186 * - 2768 - `f9c18ae1 `_ - 2018-09-09 - xavier dupré - Fxies #187 , bug in doxypy * - 2767 - `9dd7509f `_ - 2018-09-08 - xavier dupré - enable disabled tests * - 2766 - `3456025a `_ - 2018-09-08 - xavier dupré - Fixes #186, #185, markdown converter * - 2765 - `ce046ff3 `_ - 2018-08-30 - xavier dupré - fix syntax error * - 2764 - `190ded63 `_ - 2018-08-30 - xavier dupré - reduce then number of links added to one blog page * - 2763 - `a648088f `_ - 2018-08-30 - xavier dupré - add :orphan: to many file (makes some warning disappear) * - 2762 - `465489a9 `_ - 2018-08-30 - xavier dupré - Add tag :orphan:, minor changes * - 2761 - `155ea9e8 `_ - 2018-08-29 - xavier dupré - filter out more exception when building a package * - 2760 - `20768915 `_ - 2018-08-29 - xavier dupré - reduce a unit test * - 2759 - `789ab3c8 `_ - 2018-08-29 - xavier dupré - update notebook * - 2758 - `8e22c030 `_ - 2018-08-28 - xavier dupré - fix configuration * - 2757 - `b8b084fd `_ - 2018-08-28 - xavier dupré - checks sphinx configuration + pep8 * - 2756 - `6f4a34eb `_ - 2018-08-28 - xavier dupré - fix indentation * - 2755 - `e354d3e4 `_ - 2018-08-28 - xavier dupré - check latex file * - 2754 - `6e030b7f `_ - 2018-08-28 - xavier dupré - Fixes #183, formulas converted into svg for HTML, png for PDF * - 2753 - `54022cae `_ - 2018-08-27 - xavier dupré - Fixes #182, backup plan for require.js * - 2752 - `b3d43855 `_ - 2018-08-26 - xavier dupré - update circleci * - 2751 - `cabe4d1a `_ - 2018-08-26 - xavier dupré - switch from mkdir to makedirs in get_temp_folder * - 2750 - `7e4f915b `_ - 2018-08-25 - xavier dupré - remove useless code * - 2749 - `52ea0742 `_ - 2018-08-25 - xavier dupré - update local jenkins jobs * - 2748 - `c08bc777 `_ - 2018-08-25 - xavier dupré - update history * - 2747 - `f31a890d `_ - 2018-08-25 - xavier dupré - fixes for #181 (coverage) * - 2746 - `861ff117 `_ - 2018-08-25 - xavier dupré - tries another strategy for #181 (coverage combine) * - 2745 - `fd98ca18 `_ - 2018-08-25 - xavier dupré - Fixes #181, retry after the merge of coverage reports failed * - 2744 - `db8faca8 `_ - 2018-08-24 - xavier dupré - Fixes #180, parameter persistent in get_temp_folder * - 2743 - `d194c582 `_ - 2018-08-24 - xavier dupré - update regular expressions when checking files * - 2742 - `33b6302f `_ - 2018-08-23 - xavier dupré - update history * - 2741 - `172eda82 `_ - 2018-08-23 - xavier dupré - fix previous mistake * - 2740 - `2948f312 `_ - 2018-08-23 - xavier dupré - fixes two unittests failing on travis * - 2739 - `fb32e0bf `_ - 2018-08-23 - xavier dupré - update code source * - 2738 - `f86e63ac `_ - 2018-08-23 - xavier dupré - update regular expressions * - 2737 - `2e3c70f8 `_ - 2018-08-23 - xavier dupré - fixes #179, put a default value for neg_pattern if it is none to avoid known folders (function check_pep8) * - 2736 - `7f8873d3 `_ - 2018-08-23 - xavier dupré - pep8 * - 2735 - `a5874f6d `_ - 2018-08-23 - xavier dupré - fixes #178, add delay parameter for GTP transferring * - 2734 - `0ed9b800 `_ - 2018-08-22 - xavier dupré - fix quote issue in linux script for jenkins * - 2733 - `ed7cd46e `_ - 2018-08-22 - xavier dupré - add simple jenkins scripts for linux * - 2732 - `9a5bf882 `_ - 2018-08-21 - xavier dupré - update history, #163 is fixed * - 2731 - `d3616674 `_ - 2018-08-20 - xavier dupré - fix bug for #163 * - 2730 - `52a689ba `_ - 2018-08-20 - xavier dupré - fix unit test for #163 * - 2729 - `f49648a7 `_ - 2018-08-20 - xavier dupré - fix module name for #163 * - 2728 - `73b7a235 `_ - 2018-08-20 - xavier dupré - Fixes #32, add command local_jenkins for setup.py * - 2727 - `0feb1760 `_ - 2018-08-20 - xavier dupré - fix two unit tests for #163 * - 2726 - `3b42d5b5 `_ - 2018-08-20 - xavier dupré - fix bugs for #163 * - 2725 - `70c98ddb `_ - 2018-08-20 - xavier dupré - Fixes bug for #163, #177 * - 2724 - `b09ededb `_ - 2018-08-20 - xavier dupré - Fixes #177, remove ping helper * - 2723 - `e802db17 `_ - 2018-08-20 - xavier dupré - fixes for jenkins #163 * - 2722 - `db228458 `_ - 2018-08-20 - xavier dupré - pep8 + use of $PYINT (#163) * - 2721 - `7873b80e `_ - 2018-08-20 - xavier dupré - another series of fixes for #163 * - 2720 - `276741d9 `_ - 2018-08-20 - xavier dupré - update virtualenv instruction for #163 * - 2719 - `58ffb9f1 `_ - 2018-08-19 - xavier dupré - changes for #163, jenkins automation for linux * - 2718 - `317cc5dc `_ - 2018-08-19 - Ensaegithubxd - fix jenkins command line for setup.py * - 2717 - `2e3df8fd `_ - 2018-08-19 - xavier dupré - one step for #163 (jenkins for linux) * - 2716 - `67389ceb `_ - 2018-08-19 - xavier dupré - add jenkins job for linux * - 2715 - `5b8fe8f6 `_ - 2018-08-19 - xavier dupré - make pylzma an optional dependency * - 2714 - `c28bcb25 `_ - 2018-08-19 - xavier dupré - update pandoc version * - 2713 - `3ac855db `_ - 2018-08-19 - xavier dupré - update unittest for #174 * - 2712 - `838d4e33 `_ - 2018-08-19 - xavier dupré - Fixes #173, #174, #175, #176, sphinx improvments * - 2711 - `95764103 `_ - 2018-08-19 - xavier dupré - fixes #172 (rst2html allows single directives with no new nodes), quickfix for #171, pep8 * - 2710 - `29416a5d `_ - 2018-08-18 - xavier dupré - fix duplicated symbol / * - 2709 - `09f98708 `_ - 2018-08-18 - xavier dupré - fixes #171, modify the script to run in runpython sphinx directive * - 2707 - `b6c670aa `_ - 2018-08-06 - xavier dupré - Fix #170, add option syspath to autosignature * - 2706 - `ecc02937 `_ - 2018-08-06 - xavier dupré - #169, improve option debug for autosignature * - 2705 - `1d472bf9 `_ - 2018-08-06 - xavier dupré - more debug for autosignature * - 2704 - `5cae53e3 `_ - 2018-08-05 - xavier dupré - Fix #169, implements option debug for autosignature * - 2703 - `fd5ba5a9 `_ - 2018-08-05 - xavier dupré - minor update * - 2702 - `fa969bc6 `_ - 2018-08-05 - xavier dupré - catch an exception sooner * - 2701 - `8afe7780 `_ - 2018-08-05 - xavier dupré - documentation, style * - 2700 - `fe642df9 `_ - 2018-08-05 - xavier dupré - fix unit test * - 2699 - `29b55d84 `_ - 2018-08-05 - xavier dupré - enable on test on travis * - 2698 - `cabbb4d0 `_ - 2018-08-05 - xavier dupré - change the order of unit test, make one quicker * - 2697 - `6e606575 `_ - 2018-08-05 - xavier dupré - increase timeout startup when waiting for a jupyter server to start * - 2696 - `365ee055 `_ - 2018-08-05 - xavier dupré - fix #168, better handling of documentation for compiled submodules (documentation + minor fixes) * - 2695 - `1fde7bfc `_ - 2018-08-05 - xavier dupré - fix #166, improve github link for binary files * - 2694 - `61aad37b `_ - 2018-08-05 - xavier dupré - fix cleaning unit test, increase timeout for notebooks * - 2693 - `ece44ce3 `_ - 2018-08-05 - xavier dupré - fix unit test on linux * - 2692 - `e7b530f2 `_ - 2018-08-05 - xavier dupré - improve unit test, fix a misspelling bug * - 2691 - `956cfc80 `_ - 2018-08-05 - xavier dupré - fix extension name in import_module * - 2690 - `5a576702 `_ - 2018-08-05 - xavier dupré - improve error message * - 2689 - `14c4d128 `_ - 2018-08-04 - xavier dupré - fix a unit test, modifies clean_exts, improve error messages * - 2688 - `99c7c237 `_ - 2018-08-04 - xavier dupré - fix failing unit test broken by #165 * - 2687 - `fc13d720 `_ - 2018-08-04 - xavier dupré - fix #167, fix import issues in autosignature when the function is a C compiled function * - 2686 - `de702de3 `_ - 2018-08-04 - xavier dupré - fix #165, produces .rst file for C++ modules * - 2685 - `deff578c `_ - 2018-08-03 - xavier dupré - simplifies previous changes, remove unnecessary addition * - 2684 - `28f0afc2 `_ - 2018-08-03 - xavier dupré - fix weird behavior (not consistent accross platforms) * - 2683 - `5576d640 `_ - 2018-08-03 - xavier dupré - improve one unit test * - 2682 - `7231399a `_ - 2018-08-03 - xavier dupré - remove unused import * - 2681 - `ad896860 `_ - 2018-08-03 - xavier dupré - fix #164, makes autosignature more robust, fixes misspelling from the previous commit * - 2680 - `bc716424 `_ - 2018-08-03 - xavier dupré - catch an exception for bug #162 * - 2679 - `d070cc99 `_ - 2018-08-02 - xavier dupré - fix unit test * - 2678 - `eaba8035 `_ - 2018-08-02 - xavier dupré - fix unit test and syntax * - 2677 - `017b1a2a `_ - 2018-08-01 - xavier dupré - fix #162, fix jenkins script for linux * - 2675 - `5a71b945 `_ - 2018-07-30 - xavier dupré - disable one code style warning * - 2674 - `f2ab38e1 `_ - 2018-07-29 - xavier dupré - fixes #162, more robust to notebook kernel failure when unit testing * - 2673 - `967e03d7 `_ - 2018-07-28 - xavier dupré - fix #161, fix unit test test_build_script on appveyor * - 2671 - `e8a2dcad `_ - 2018-07-25 - xavier dupré - appveyor * - 2670 - `7eaf683d `_ - 2018-07-25 - xavier dupré - fix #160, closes a notebook kernel even when the execution fails * - 2669 - `2b609d11 `_ - 2018-07-25 - xavier dupré - skip one unit test on appveyor * - 2668 - `90ed5902 `_ - 2018-07-25 - xavier dupré - add another test back * - 2667 - `9933b29a `_ - 2018-07-25 - xavier dupré - add one test back * - 2666 - `9e131787 `_ - 2018-07-25 - xavier dupré - test failing test on appveyor * - 2665 - `bbdf1d90 `_ - 2018-07-25 - xavier dupré - try appveyor * - 2664 - `3c643c01 `_ - 2018-07-25 - xavier dupré - failing tests? * - 2663 - `f1fbcff7 `_ - 2018-07-25 - xavier dupré - move some unit test later * - 2662 - `d79fd065 `_ - 2018-07-25 - xavier dupré - check appveyor * - 2661 - `40e12cc7 `_ - 2018-07-25 - xavier dupré - try appveyor * - 2660 - `6e2dd53b `_ - 2018-07-25 - xavier dupré - try appveyor * - 2659 - `bc576dec `_ - 2018-07-25 - xavier dupré - try appveyor * - 2658 - `44cb4fea `_ - 2018-07-25 - xavier dupré - test appveyor * - 2657 - `0d3d9a6c `_ - 2018-07-25 - xavier dupré - unit test estimation time * - 2656 - `114ee678 `_ - 2018-07-25 - xavier dupré - fix unit test on coverage * - 2655 - `ef3a74d8 `_ - 2018-07-25 - xavier dupré - update appveyor * - 2654 - `adb18ed8 `_ - 2018-07-24 - xavier dupré - investigate which unit test makes the process be persistent * - 2653 - `dd00da7c `_ - 2018-07-24 - xavier dupré - disable one unit test for appveyor * - 2652 - `8a36017c `_ - 2018-07-24 - xavier dupré - update CI * - 2651 - `2ce4e15c `_ - 2018-07-24 - xavier dupré - remove unnecessary command * - 2649 - `f383b569 `_ - 2018-07-23 - xavier dupré - reverse a condition * - 2647 - `ea22071c `_ - 2018-07-23 - xavier dupré - fix bug for python 37 * - 2646 - `45e98620 `_ - 2018-07-22 - xavier dupré - fix pywin32 * - 2645 - `27d4c2f5 `_ - 2018-07-22 - xavier dupré - fix misspelling * - 2644 - `24502a10 `_ - 2018-07-22 - xavier dupré - update unit test for travis 3.6 * - 2643 - `3f1bd658 `_ - 2018-07-22 - xavier dupré - disable one unit test on CI (ping) * - 2642 - `b7db7701 `_ - 2018-07-22 - xavier dupré - disable one test on travis (ping) * - 2641 - `d1f7e265 `_ - 2018-07-22 - xavier dupré - disable one failing test on circleci * - 2640 - `9da58b97 `_ - 2018-07-22 - xavier dupré - minor fixes for jenkins wrapper * - 2639 - `6c602681 `_ - 2018-07-22 - xavier dupré - fix #158, replace clock by perf_counter, others fixes for CI * - 2638 - `4fc9861d `_ - 2018-07-22 - xavier dupré - fix unit tests on linux * - 2637 - `05d2b200 `_ - 2018-07-22 - xavier dupré - fix unit tests with jenkins * - 2636 - `d6cd24e4 `_ - 2018-07-22 - xavier dupré - update local jenkins * - 2635 - `55bde6c5 `_ - 2018-07-22 - xavier dupré - fix unit test with Python37 * - 2634 - `4f4ad3fb `_ - 2018-07-22 - xavier dupré - update CI * - 2633 - `14f34dd6 `_ - 2018-07-22 - xavier dupré - update local jenkins * - 2632 - `d167c1ca `_ - 2018-07-22 - xavier dupré - fix method for python-jenkins 1.1.0 * - 2631 - `1087f836 `_ - 2018-07-22 - xavier dupré - fix #156, update to python-jenkins 1.1.0 * - 2630 - `2c70ed27 `_ - 2018-07-22 - xavier dupré - Fix for #155, pylint 2.0, update the module to deal with new warnings * - 2629 - `b9dc8906 `_ - 2018-07-22 - xavier dupré - update setup.py * - 2628 - `7b345788 `_ - 2018-07-22 - xavier dupré - update build_script.bat * - 2627 - `1d809ccd `_ - 2018-07-07 - xavier dupré - update pandoc * - 2626 - `e35f352f `_ - 2018-06-26 - xavier dupré - fix bokeh * - 2625 - `30d045be `_ - 2018-06-20 - xavier dupré - fix docstring2html (wrong parameter name) * - 2624 - `7a2f7006 `_ - 2018-06-19 - xavier dupré - documentation, fix a small bug in doc2htmlstring * - 2622 - `3e0353e9 `_ - 2018-06-01 - xavier dupré - update expected output * - 2621 - `b37de114 `_ - 2018-05-31 - xavier dupré - change color for notebook coverage * - 2620 - `0d2b4b1c `_ - 2018-05-29 - xavier dupré - fix a rare bug happening when copying files * - 2619 - `aecde66c `_ - 2018-05-27 - xavier dupré - change background color for coverage notebook #154 * - 2618 - `f7d16fcc `_ - 2018-05-27 - xavier dupré - fix two bugs introduced with previous commit * - 2617 - `7095acc4 `_ - 2018-05-27 - xavier dupré - move files * - 2616 - `895b7f3b `_ - 2018-05-27 - xavier dupré - remove unnecessary parameter * - 2615 - `99027191 `_ - 2018-05-27 - xavier dupré - better warnings, better error message, implement #153 * - 2614 - `c6551487 `_ - 2018-05-24 - xavier dupré - fix #151, staticmethod in autosignature * - 2613 - `c42ad57e `_ - 2018-05-24 - xavier dupré - update script jenkins * - 2612 - `4351b3d2 `_ - 2018-05-23 - xavier dupré - fix bug #150, hide more warnings * - 2611 - `9640bcb2 `_ - 2018-05-22 - xavier dupré - move import inside function in default_conf * - 2610 - `b5098044 `_ - 2018-05-21 - xavier dupré - small improvments * - 2609 - `a5bb2541 `_ - 2018-05-19 - xavier dupré - fix missing local variable * - 2608 - `5e3e3555 `_ - 2018-05-19 - xavier dupré - rename option fullpath into path in autosignature #149 * - 2607 - `6a7ab596 `_ - 2018-05-17 - xavier dupré - update circleci requirements to the latest pandas * - 2606 - `5513f2cb `_ - 2018-05-17 - xavier dupré - fix #148, adjust to latest pandas version, remove on warning * - 2605 - `27b203dd `_ - 2018-05-17 - xavier dupré - documentation, setup, circleci * - 2603 - `bb7c7c6e `_ - 2018-05-14 - xavier dupré - documentation, changes for pylint * - 2602 - `1a2adadb `_ - 2018-05-11 - xavier dupré - fix for #144 (remove sphinx-gallery when not needed) * - 2601 - `6c3a8aeb `_ - 2018-05-11 - xavier dupré - fix failing unit test, still for pylint * - 2600 - `90ceb5ac `_ - 2018-05-11 - xavier dupré - fixes for pylint * - 2599 - `494e459c `_ - 2018-05-11 - xavier dupré - fix to find file which breaks pylint #142 * - 2598 - `baa686c3 `_ - 2018-05-11 - xavier dupré - add feature #143, first step to investigate #142 (pylint) * - 2597 - `4cda25ae `_ - 2018-05-11 - xavier dupré - rename a unit test * - 2596 - `9c05f03f `_ - 2018-05-11 - xavier dupré - update unit test after jenkins modification * - 2595 - `451e9697 `_ - 2018-05-11 - xavier dupré - pep8, fix unit test, introduce temp2 * - 2594 - `a730b6c6 `_ - 2018-05-11 - xavier dupré - rename parameter neg_filter into neg_pattern * - 2593 - `72326ddb `_ - 2018-05-11 - xavier dupré - reorder unit tests * - 2592 - `20a5c4b9 `_ - 2018-05-11 - xavier dupré - rename neg_filter into neg_pattern for check_pep8 * - 2591 - `aa66271d `_ - 2018-05-11 - xavier dupré - pep8, documentation * - 2590 - `48226e54 `_ - 2018-05-11 - xavier dupré - update for sphinx_gallery * - 2589 - `0cecada2 `_ - 2018-05-10 - xavier dupré - remove len on generators * - 2588 - `613fac39 `_ - 2018-05-10 - xavier dupré - update for circlecli * - 2587 - `1a7f2bb5 `_ - 2018-05-10 - xavier dupré - code style, fix unit tests after renaming project_name * - 2586 - `55ef4553 `_ - 2018-05-10 - xavier dupré - fix pep8 * - 2585 - `a393c852 `_ - 2018-05-10 - xavier dupré - fix a few unit test on linux * - 2584 - `e60887af `_ - 2018-05-10 - xavier dupré - fix a bug intrduced in previous commit, update to version 1.8 * - 2583 - `e4ada67b `_ - 2018-05-10 - xavier dupré - many change to follow many pylint requirements #141 * - 2581 - `2a5b53b6 `_ - 2018-05-08 - xavier dupré - update history * - 2580 - `189e1e49 `_ - 2018-05-07 - xavier dupré - fix unit test failing due to previous change * - 2579 - `eaefe670 `_ - 2018-05-07 - xavier dupré - replaces assert_array_equal with assert_almost_equal * - 2578 - `340243e1 `_ - 2018-05-06 - xavier dupré - fix data for unit test impacted by #82 * - 2577 - `e7655362 `_ - 2018-05-06 - xavier dupré - remove reference to removed file for #82 * - 2576 - `1943175f `_ - 2018-05-06 - xavier dupré - remove unused methods after #82 * - 2575 - `b9f793b6 `_ - 2018-05-06 - xavier dupré - fix issue #82, remove extension release, better history, add role issue for function rs2html * - 2573 - `a39c471a `_ - 2018-05-06 - xavier dupré - retrieve past history #138 * - 2572 - `41b45878 `_ - 2018-05-05 - xavier dupré - Merge branch 'master' of https://github.com/sdpython/pyquickhelper * - 2571 - `70273f60 `_ - 2018-05-05 - xavier dupré - update requirements for #139 * - 2570 - `c8db8a0e `_ - 2018-05-05 - xavier dupré - update to python-jenkins 1.0.0 #139 * - 2569 - `cd624257 `_ - 2018-05-01 - xavier dupré - update history * - 2568 - `146823f2 `_ - 2018-04-30 - xavier dupré - fix import issue with sphinx (circular references) * - 2567 - `a3c0afd7 `_ - 2018-04-29 - xavier dupré - add weird characters * - 2566 - `36cb73d6 `_ - 2018-04-29 - xavier dupré - fix bug #137 * - 2565 - `ae0a6afa `_ - 2018-04-29 - xavier dupré - update unit test class * - 2564 - `c9947df4 `_ - 2018-04-29 - xavier dupré - implements #136 * - 2563 - `49581cf7 `_ - 2018-04-23 - xavier dupré - update history * - 2562 - `d06c0296 `_ - 2018-04-22 - xavier dupré - handle multiple version of sphinx * - 2561 - `05b8d132 `_ - 2018-04-22 - xavier dupré - fix #135, circular reference in sphinx * - 2560 - `16e90db4 `_ - 2018-04-22 - xavier dupré - history * - 2559 - `579f5401 `_ - 2018-04-22 - xavier dupré - #133, toggle, hide, unhide code and output in runpython * - 2558 - `281658eb `_ - 2018-04-22 - xavier dupré - implements #133, hide, show documentation * - 2557 - `9a79c0b0 `_ - 2018-04-22 - xavier dupré - fix bug introduced with #58, documentation * - 2556 - `a673f9b4 `_ - 2018-04-22 - xavier dupré - fix issue #58, extend output for role bigger * - 2555 - `21e82c40 `_ - 2018-04-22 - xavier dupré - fix documentation * - 2554 - `6b1ab1dc `_ - 2018-04-22 - xavier dupré - fix bug in runpython * - 2553 - `6eda8ead `_ - 2018-04-22 - xavier dupré - implements #134 (url for video), fix for #130 (runpython) * - 2552 - `b98768f2 `_ - 2018-04-22 - xavier dupré - fix missing ) in documentation * - 2551 - `25ac8ede `_ - 2018-04-22 - xavier dupré - fix for #130, switch to abspath * - 2549 - `21be7642 `_ - 2018-04-22 - xavier dupré - implement #130 allow runpython to plot * - 2548 - `ef6181af `_ - 2018-04-21 - xavier dupré - implement #131, #132 about runpython and warnings * - 2547 - `18502a35 `_ - 2018-04-18 - xavier dupré - history * - 2546 - `7479c627 `_ - 2018-04-17 - xavier dupré - fix path issue * - 2545 - `5e8e6c51 `_ - 2018-04-17 - xavier dupré - fix issue with getsitepackages * - 2544 - `72d0a449 `_ - 2018-04-17 - xavier dupré - implements #129 in unittest class (profiling) * - 2543 - `76149b98 `_ - 2018-04-15 - xavier dupré - add tag .. _l-HISTORY to automated page * - 2542 - `a80f0a02 `_ - 2018-04-14 - xavier dupré - fix #128, type error when guessing datetime for an upload * - 2541 - `49c17ba4 `_ - 2018-04-14 - xavier dupré - fix pip import * - 2540 - `c088a399 `_ - 2018-04-14 - xavier dupré - update appveyor * - 2539 - `e8822da7 `_ - 2018-04-14 - xavier dupré - update pandoc version on circleci * - 2538 - `62b00d51 `_ - 2018-04-14 - xavier dupré - fix #127, update for pip 10 * - 2537 - `993f59ba `_ - 2018-04-14 - xavier dupré - add more link to the documentation * - 2536 - `a34bea8c `_ - 2018-04-14 - xavier dupré - fix unit test on documentation * - 2535 - `641d9cce `_ - 2018-04-14 - xavier dupré - history * - 2534 - `d6111944 `_ - 2018-04-14 - xavier dupré - fix issue #126 remove dependency on flake8, use pycodestyle * - 2533 - `1727cb7f `_ - 2018-04-14 - xavier dupré - remove one blank line * - 2532 - `c9ed1883 `_ - 2018-04-09 - xavier dupré - fix a bug in link name when converting a notebook into RST * - 2531 - `427903e7 `_ - 2018-04-09 - xavier dupré - catch an exception, display a better message * - 2530 - `052b66b8 `_ - 2018-04-09 - xavier dupré - fix a missing value * - 2529 - `941bb819 `_ - 2018-04-06 - xavier dupré - fix mismath with admonition in blogpost * - 2528 - `010cc66c `_ - 2018-04-06 - xavier dupré - add comment avout a warning * - 2527 - `fb36fbe0 `_ - 2018-04-06 - xavier dupré - fix sharenet extension * - 2526 - `0173e361 `_ - 2018-04-06 - xavier dupré - implement #26, #122, #123 about blog post * - 2525 - `679a3387 `_ - 2018-04-05 - xavier dupré - fix issue #125, sharenet available for format rst * - 2524 - `7c0a009a `_ - 2018-04-05 - xavier dupré - fix #124 - handle CodeNode in rst * - 2523 - `b20ef885 `_ - 2018-04-05 - xavier dupré - update history * - 2522 - `e5594851 `_ - 2018-04-04 - xavier dupré - add more assert fucntions * - 2521 - `0941d103 `_ - 2018-04-02 - xavier dupré - fix filename for #122 * - 2520 - `727903e4 `_ - 2018-04-02 - xavier dupré - fix for #122, name issue * - 2519 - `27b018de `_ - 2018-04-02 - xavier dupré - fix for #122, do not modify rst name but html * - 2518 - `e0976749 `_ - 2018-04-02 - xavier dupré - update name for a notebook converted into rst #122 * - 2517 - `c8479e97 `_ - 2018-04-02 - xavier dupré - better error message when AssertionError is raised * - 2516 - `24b5ea6a `_ - 2018-04-01 - xavier dupré - remove duplicated function * - 2515 - `3686c3d3 `_ - 2018-04-01 - xavier dupré - implements #121, extends list of functions in ExtTestCase * - 2514 - `3f34f883 `_ - 2018-04-01 - xavier dupré - history + improve coverage display * - 2513 - `82cab23e `_ - 2018-04-01 - xavier dupré - add _fieldlist_row_index if not present * - 2512 - `f474073c `_ - 2018-03-30 - xavier dupré - pep 8 + history * - 2511 - `23dc6ccd `_ - 2018-03-30 - xavier dupré - fix bug #119 (image name collision) * - 2510 - `a0ffa4ad `_ - 2018-03-27 - xavier dupré - fix unit test (deleted file) * - 2509 - `00f8ea84 `_ - 2018-03-26 - xavier dupré - some cleaning * - 2508 - `4125c0a5 `_ - 2018-03-26 - xavier dupré - remove one unit test testing a removed piece of code * - 2507 - `f4e14a9b `_ - 2018-03-26 - xavier dupré - fix bug in notebook rst exporter , add unit test * - 2506 - `9c228b01 `_ - 2018-03-26 - xavier dupré - update unit test on full documention * - 2505 - `b393825b `_ - 2018-03-26 - xavier dupré - improve unit test, look for graphviz on appveyor * - 2504 - `6e035348 `_ - 2018-03-26 - xavier dupré - disable latex by default for videos * - 2503 - `b8df25bc `_ - 2018-03-25 - xavier dupré - add test * - 2502 - `000422a7 `_ - 2018-03-25 - xavier dupré - fix unit test * - 2501 - `7c5bee4a `_ - 2018-03-25 - xavier dupré - update sys.path, make sure the right file is imported * - 2500 - `e0f6ac14 `_ - 2018-03-25 - xavier dupré - more logging * - 2499 - `10175486 `_ - 2018-03-25 - xavier dupré - more display * - 2498 - `cc1e3f0b `_ - 2018-03-25 - xavier dupré - more logging to understand an error on CI * - 2497 - `7e9a5cec `_ - 2018-03-25 - xavier dupré - first step for #116, post process notebook for raw:: html * - 2496 - `dae2dc38 `_ - 2018-03-25 - xavier dupré - custom log * - 2495 - `5f388f4f `_ - 2018-03-25 - xavier dupré - disable a test on python 3.5 * - 2494 - `249771bc `_ - 2018-03-24 - xavier dupré - fix unit test * - 2493 - `9028fce3 `_ - 2018-03-24 - xavier dupré - fix history * - 2492 - `f1c2a326 `_ - 2018-03-24 - xavier dupré - move logging * - 2491 - `18c13553 `_ - 2018-03-24 - xavier dupré - simplify appveyor * - 2490 - `9b2cf2bf `_ - 2018-03-24 - xavier dupré - enables tests * - 2489 - `0246cbb3 `_ - 2018-03-24 - xavier dupré - add unpublished fixed issues * - 2488 - `754f6374 `_ - 2018-03-24 - xavier dupré - finalize history builder * - 2487 - `be67e5e6 `_ - 2018-03-24 - xavier dupré - documentation link to new pypi * - 2486 - `37e2d814 `_ - 2018-03-24 - xavier dupré - retrieves history of a package * - 2485 - `805ad221 `_ - 2018-03-24 - xavier dupré - extends unit test coverage * - 2484 - `3a7c7d9d `_ - 2018-03-24 - xavier dupré - extend unittests coverage * - 2483 - `1da6b2ea `_ - 2018-03-22 - xavier dupré - modifies log display in run_cmd * - 2482 - `25ff97b5 `_ - 2018-03-21 - xavier dupré - add license * - 2481 - `f831c8ad `_ - 2018-03-21 - xavier dupré - fix copy files for documentation * - 2480 - `63cd2ba2 `_ - 2018-03-21 - xavier dupré - fix unit test * - 2479 - `a00e7734 `_ - 2018-03-21 - xavier dupré - update dependency * - 2478 - `e57be4a7 `_ - 2018-03-21 - xavier dupré - update for jyquickhelper, remove python 2.7 * - 2477 - `20bd3f9a `_ - 2018-03-21 - xavier dupré - fix failing unit test * - 2476 - `ea0cadad `_ - 2018-03-21 - xavier dupré - fix failing unit test due to removed files * - 2475 - `d99675a8 `_ - 2018-03-21 - xavier dupré - increase unit test coverage, remove deprecated functions * - 2474 - `943db9da `_ - 2018-03-21 - xavier dupré - fix misspelled reference in documentation * - 2473 - `2ec387c4 `_ - 2018-03-20 - xavier dupré - fix feature #111, replace menu by .. content:: * - 2472 - `c265321f `_ - 2018-03-20 - xavier dupré - disable one test on travis * - 2471 - `06140348 `_ - 2018-03-20 - xavier dupré - first step to #42, #111, custom export to rst * - 2470 - `b115427b `_ - 2018-03-20 - xavier dupré - update path in setup (ROOT, BLIB - hidden options) * - 2469 - `0d7a9c40 `_ - 2018-03-19 - xavier dupré - add another fix for pip 9.0.2 * - 2468 - `df7873bd `_ - 2018-03-19 - xavier dupré - history * - 2467 - `20b6bc5c `_ - 2018-03-19 - xavier dupré - blog post * - 2466 - `41bd6f49 `_ - 2018-03-19 - xavier dupré - improve blog list * - 2465 - `176a26f2 `_ - 2018-03-18 - xavier dupré - add fix_pip_902 to add missing dependencies * - 2464 - `b0713717 `_ - 2018-03-17 - xavier dupré - pip 9.0.2 has an issue, tries to address it * - 2463 - `0ddac2a0 `_ - 2018-03-17 - xavier dupré - fix unit test * - 2462 - `5651f597 `_ - 2018-03-17 - xavier dupré - fix issue with require.js * - 2461 - `f3252f64 `_ - 2018-03-17 - xavier dupré - update the way to get require.js * - 2460 - `1d25b366 `_ - 2018-03-15 - xavier dupré - disable unit test on circleci * - 2459 - `ca56de1e `_ - 2018-03-15 - xavier dupré - fix requirments appveyor, travis * - 2458 - `759383dd `_ - 2018-03-15 - xavier dupré - #112 allow custom snippet for notebooks * - 2457 - `306182b7 `_ - 2018-03-15 - xavier dupré - fix wrong documentation format * - 2456 - `47974f72 `_ - 2018-03-15 - xavier dupré - update build and documentation * - 2455 - `7fd8fb42 `_ - 2018-03-15 - xavier dupré - modifies the test about javascript * - 2454 - `223ac78e `_ - 2018-03-14 - xavier dupré - first try to handle javascript * - 2453 - `6a28cb11 `_ - 2018-03-13 - xavier dupré - update appveyor * - 2452 - `1a267e36 `_ - 2018-03-13 - xavier dupré - fix one latex issue (continue if output), replace movie15 by media9 * - 2451 - `fe760cf6 `_ - 2018-03-13 - xavier dupré - add function to convert svg into an image * - 2450 - `ef6d2688 `_ - 2018-03-10 - xavier dupré - update appveyor * - 2449 - `357816a7 `_ - 2018-03-10 - xavier dupré - #108, add lab command * - 2448 - `4cd2345c `_ - 2018-03-03 - xavier dupré - documentation blog post * - 2447 - `5b82734f `_ - 2018-03-03 - xavier dupré - fix misspelling * - 2446 - `1c8898a9 `_ - 2018-03-03 - xavier dupré - switch to xelatex if possible * - 2445 - `dab82aa3 `_ - 2018-03-03 - xavier dupré - improve error message * - 2444 - `90d67e78 `_ - 2018-03-03 - xavier dupré - improve latex processing (add -quiet to the command line) * - 2443 - `3bdda7f9 `_ - 2018-03-01 - xavier dupré - deals with pending_xref in rst outputter #104 * - 2442 - `2e74517e `_ - 2018-02-27 - xavier dupré - fix sphinx import issue (raised by 1.7.1) * - 2441 - `5b54a727 `_ - 2018-02-25 - xavier dupré - add another replacement to rst format * - 2440 - `89252273 `_ - 2018-02-25 - xavier dupré - add accent to test * - 2439 - `526bc4ba `_ - 2018-02-25 - xavier dupré - update unit test, change default values for latex and accents * - 2438 - `463eb6d3 `_ - 2018-02-23 - xavier dupré - documentation for #102 * - 2437 - `c89aeba3 `_ - 2018-02-23 - xavier dupré - fix sphinx command line * - 2436 - `3f43b3f5 `_ - 2018-02-23 - xavier dupré - add bokeh to appveyor * - 2435 - `dd81c6c7 `_ - 2018-02-23 - xavier dupré - update appveyor * - 2434 - `4d91320f `_ - 2018-02-23 - xavier dupré - update appveyor * - 2433 - `b530dd9c `_ - 2018-02-23 - xavier dupré - update appveyor * - 2432 - `e86adf8f `_ - 2018-02-23 - xavier dupré - fix latex miktex * - 2431 - `03242f09 `_ - 2018-02-23 - xavier dupré - appveyor and miktex * - 2430 - `47bb317d `_ - 2018-02-23 - xavier dupré - update appveyor + history * - 2429 - `c240855e `_ - 2018-02-23 - xavier dupré - update setup.py * - 2428 - `cf5730fd `_ - 2018-02-23 - xavier dupré - update setup.py * - 2427 - `ef602ad9 `_ - 2018-02-23 - xavier dupré - simplify automated scripts * - 2426 - `bb85062a `_ - 2018-02-23 - xavier dupré - fix a bug in ungzip_files * - 2425 - `454fe12c `_ - 2018-02-21 - xavier dupré - update miktex install * - 2424 - `a61df3a4 `_ - 2018-02-21 - xavier dupré - update appveyor * - 2423 - `e89a62af `_ - 2018-02-20 - xavier dupré - fix appveyor * - 2422 - `7f3fd832 `_ - 2018-02-20 - xavier dupré - update build * - 2421 - `12f6a563 `_ - 2018-02-17 - xavier dupré - configuration + copy pdf in html folder * - 2420 - `a3e06f8a `_ - 2018-02-17 - xavier dupré - update latex default * - 2419 - `348375c2 `_ - 2018-02-16 - xavier dupré - allow clean to be callable (get_temp_folder) * - 2418 - `7dadd999 `_ - 2018-02-16 - xavier dupré - upgrade version * - 2417 - `4a746c4e `_ - 2018-02-16 - xavier dupré - add assertEqualDict * - 2416 - `2dca56da `_ - 2018-02-14 - xavier dupré - fix case for a filename * - 2415 - `31cd1f51 `_ - 2018-02-14 - xavier dupré - more keywords, update history * - 2414 - `1f65a4c3 `_ - 2018-02-13 - xavier dupré - update version number * - 2413 - `cfe927d2 `_ - 2018-02-13 - xavier dupré - fix sphinx issue, duplicated code * - 2412 - `64c6e6e5 `_ - 2018-02-13 - xavier dupré - add bokeh_plot (failing with sphinx 1.7) * - 2411 - `eaa2a674 `_ - 2018-02-13 - xavier dupré - fix command line for sphinx * - 2410 - `d0465ca9 `_ - 2018-02-13 - xavier dupré - upgrade reveal.js to 3.6.0 * - 2409 - `c488ac4f `_ - 2018-02-13 - xavier dupré - fix unit tests inheritance * - 2408 - `a1fdf126 `_ - 2018-02-13 - xavier dupré - update to Sphinx 1.7 + many modifications * - 2407 - `578511c7 `_ - 2018-02-13 - xavier dupré - fixes one bug for Sphinx 1.7 * - 2406 - `3e55a2f3 `_ - 2018-02-13 - xavier dupré - update to sphinx 1.7 * - 2405 - `107b620f `_ - 2018-02-12 - xavier dupré - add assert equal number * - 2404 - `be222e6d `_ - 2018-02-10 - xavier dupré - better logging * - 2403 - `569aa158 `_ - 2018-02-09 - xavier dupré - add parameter filter_name * - 2402 - `0cf7f98b `_ - 2018-02-07 - xavier dupré - remove unused variable * - 2401 - `419bad0d `_ - 2018-02-07 - xavier dupré - catch more exception, better error messages * - 2400 - `0c78a32d `_ - 2018-02-05 - xavier dupré - fix error messages * - 2399 - `603e93ae `_ - 2018-02-04 - xavier dupré - catches an exception and gives more feedback * - 2397 - `c01ed933 `_ - 2018-02-04 - xavier dupré - fix indentation in documentation #100 * - 2396 - `8ed88a7b `_ - 2018-02-03 - xavier dupré - fix mathdef tag * - 2394 - `d0211088 `_ - 2018-02-03 - xavier dupré - fix dupicated warnings * - 2393 - `d99601f2 `_ - 2018-02-03 - xavier dupré - more insights on warnings * - 2392 - `65c413a2 `_ - 2018-02-03 - xavier dupré - fix configuration * - 2391 - `72bf1111 `_ - 2018-02-02 - xavier dupré - update custom style for blogpost * - 2390 - `9583b060 `_ - 2018-02-02 - xavier dupré - fix sphinx classes * - 2388 - `2498cd2f `_ - 2018-01-31 - xavier dupré - fix issue #96, better handling of notebooks in latex * - 2387 - `426f3ee5 `_ - 2018-01-31 - xavier dupré - fix issue #99, better handling of examples galleries * - 2386 - `3bc71208 `_ - 2018-01-30 - xavier dupré - disable unit test on travis circleci * - 2385 - `b8674242 `_ - 2018-01-30 - xavier dupré - update unit test * - 2384 - `a49d804b `_ - 2018-01-30 - xavier dupré - add csv to the list of files to copy * - 2383 - `21de0955 `_ - 2018-01-30 - xavier dupré - add file extension csv (copy file for documentation) * - 2382 - `21fdda54 `_ - 2018-01-30 - xavier dupré - fix import issues * - 2381 - `60682605 `_ - 2018-01-29 - xavier dupré - fix import issue * - 2380 - `2dce3ef5 `_ - 2018-01-29 - xavier dupré - fix issue with tkinter and virtual envrionment * - 2379 - `ee2f3c92 `_ - 2018-01-29 - xavier dupré - fix #95 about replacing unicode characters * - 2378 - `9ebd5567 `_ - 2018-01-28 - xavier dupré - add fixture, feature #94 * - 2377 - `3fc7fb5f `_ - 2018-01-28 - xavier dupré - fix pylzma appveyor python 3.5 * - 2376 - `9e565497 `_ - 2018-01-27 - xavier dupré - catch from exception for notebook coverage * - 2374 - `80d7d6cb `_ - 2018-01-20 - xavier dupré - update appveyor * - 2373 - `fb119547 `_ - 2018-01-20 - xavier dupré - pandas on appveyor * - 2372 - `585ecf34 `_ - 2018-01-20 - xavier dupré - disable two test on linux * - 2371 - `e8d58450 `_ - 2018-01-19 - xavier dupré - pep8 * - 2370 - `8cff2315 `_ - 2018-01-19 - xavier dupré - documentation + extend unit test coverage * - 2369 - `39f90e0d `_ - 2018-01-19 - xavier dupré - catch one case when fLOG is None * - 2368 - `18094af2 `_ - 2018-01-19 - xavier dupré - add custom replacements in notebooks, feature #93 * - 2367 - `5d8bd1b2 `_ - 2018-01-17 - xavier dupré - fix issue with jenkins server with a script including XML special characters * - 2366 - `f788cb65 `_ - 2018-01-16 - xavier dupré - fix and test a latex issue for videos * - 2365 - `78d4e829 `_ - 2018-01-16 - xavier dupré - fix latex issue for sphinx directive video * - 2364 - `2a0ca66a `_ - 2018-01-15 - xavier dupré - fix relative path in directive video * - 2363 - `50fddcd0 `_ - 2018-01-15 - xavier dupré - update setup with an extension * - 2362 - `c215fdc6 `_ - 2018-01-15 - xavier dupré - update one missing extension in setup.py * - 2361 - `4e5ad88f `_ - 2018-01-15 - xavier dupré - update history * - 2360 - `e402d514 `_ - 2018-01-15 - xavier dupré - better error message, skip gif extension * - 2359 - `ab2c0b23 `_ - 2018-01-15 - xavier dupré - fix unit test, extensions, warnings * - 2358 - `9608f836 `_ - 2018-01-15 - xavier dupré - update documentation generation, fixes a few bugs * - 2357 - `c80281c3 `_ - 2018-01-14 - xavier dupré - add unit test on thumbnail, fixes a few bugs * - 2356 - `be09b6d6 `_ - 2018-01-14 - xavier dupré - finalize video extension #92 * - 2355 - `35e08076 `_ - 2018-01-14 - xavier dupré - include sphinxcontrib-image + unit test * - 2354 - `911db9d5 `_ - 2018-01-14 - xavier dupré - first step in adding video extension for sphinx * - 2353 - `3bbf7fba `_ - 2018-01-11 - xavier dupré - remove unnecessary import * - 2352 - `09541d8d `_ - 2018-01-11 - xavier dupré - catch exception in unzip_files * - 2351 - `9f311b75 `_ - 2018-01-09 - xavier dupré - replaces an exception by a warning * - 2350 - `8f215e03 `_ - 2018-01-09 - xavier dupré - disable one test on travis, circleci * - 2349 - `d5d208bc `_ - 2018-01-09 - xavier dupré - add command line for 7z (LZMA2) * - 2348 - `56950d8a `_ - 2018-01-08 - xavier dupré - fix failing unit test * - 2347 - `95e644f7 `_ - 2018-01-08 - xavier dupré - move one unit test, api call is failing too many often * - 2346 - `b3d935f2 `_ - 2018-01-05 - xavier dupré - fix issue with None in autosignature * - 2345 - `351d5972 `_ - 2018-01-02 - xavier dupré - do not remove previous coverage report * - 2344 - `5663ed17 `_ - 2018-01-02 - xavier dupré - fix coverage report, fix issue #73 * - 2343 - `388d30fb `_ - 2018-01-02 - xavier dupré - another fix * - 2342 - `b8821aeb `_ - 2018-01-02 - xavier dupré - fix missing parameters * - 2341 - `3971fd4a `_ - 2018-01-02 - xavier dupré - improve error message * - 2340 - `82fe5331 `_ - 2018-01-01 - xavier dupré - reorder instructions in a function * - 2339 - `69056ee2 `_ - 2018-01-01 - xavier dupré - reoder instructions in a function * - 2338 - `18f145eb `_ - 2018-01-01 - xavier dupré - still fixing absolute path while merging coverage * - 2337 - `3691b68b `_ - 2018-01-01 - xavier dupré - additional information in an error message * - 2336 - `b767c877 `_ - 2018-01-01 - xavier dupré - shorten error message * - 2335 - `1e23d2a8 `_ - 2018-01-01 - xavier dupré - update path for coverage_combine * - 2334 - `dadaf939 `_ - 2018-01-01 - xavier dupré - better error message * - 2333 - `a8e6042d `_ - 2018-01-01 - xavier dupré - longer error message * - 2332 - `f92f4bb9 `_ - 2018-01-01 - xavier dupré - shorten error message * - 2331 - `36330c18 `_ - 2018-01-01 - xavier dupré - update coverage merging * - 2330 - `d2b2d5b8 `_ - 2018-01-01 - xavier dupré - add abapath, normpath * - 2329 - `b7ee4df5 `_ - 2018-01-01 - xavier dupré - fix failing unit test * - 2328 - `5c3ec93d `_ - 2018-01-01 - xavier dupré - add logging function to git clone, add a unit test to check merging of code coverage * - 2327 - `883e6cb5 `_ - 2018-01-01 - xavier dupré - data for unit test * - 2326 - `a76ea206 `_ - 2018-01-01 - xavier dupré - extend unit test coverage * - 2325 - `808494d4 `_ - 2018-01-01 - xavier dupré - removes fix_ie_layout_html (unused) * - 2324 - `7b51f09e `_ - 2018-01-01 - xavier dupré - improve logging while running unit tests * - 2323 - `c018c18a `_ - 2017-12-31 - xavier dupré - order items to avoid unit test to fail * - 2322 - `528f50e7 `_ - 2017-12-31 - xavier dupré - fix source path in unit test * - 2321 - `6fa56152 `_ - 2017-12-31 - xavier dupré - disable one test on python 3.5- * - 2320 - `e4f712bc `_ - 2017-12-31 - xavier dupré - fix a bug in unit tests * - 2319 - `442e6caa `_ - 2017-12-31 - xavier dupré - fix None value for unit test * - 2318 - `e7d88637 `_ - 2017-12-31 - xavier dupré - merges coverage reports in unit tests * - 2317 - `7312f571 `_ - 2017-12-31 - xavier dupré - fix unit test broken in previous commit * - 2316 - `5c87e694 `_ - 2017-12-31 - xavier dupré - better display in unit tests * - 2315 - `bf8b60c0 `_ - 2017-12-31 - xavier dupré - use parameter process * - 2314 - `234de9b7 `_ - 2017-12-31 - xavier dupré - add parameter process * - 2313 - `030ad620 `_ - 2017-12-31 - xavier dupré - add function to combine coverage reports * - 2312 - `8b498a07 `_ - 2017-12-31 - xavier dupré - add unit test data * - 2311 - `603acb31 `_ - 2017-12-30 - xavier dupré - better error message * - 2310 - `c63bb9f5 `_ - 2017-12-30 - xavier dupré - better error message * - 2309 - `2464d781 `_ - 2017-12-30 - xavier dupré - better error message * - 2308 - `ac2ff4d3 `_ - 2017-12-30 - xavier dupré - better error message * - 2307 - `6be8557f `_ - 2017-12-17 - xavier dupré - update coverage for notebooks * - 2306 - `afd83aa7 `_ - 2017-12-17 - xavier dupré - update notebook badge * - 2305 - `e1e750d4 `_ - 2017-12-17 - xavier dupré - rename nbcov.png in nbcov-date.png * - 2304 - `61a6a0b1 `_ - 2017-12-15 - xavier dupré - update pattern for artefacts * - 2303 - `437f04df `_ - 2017-12-15 - xavier dupré - fix issue #86, last line in notebooks * - 2302 - `8c97448c `_ - 2017-12-12 - xavier dupré - catch an exception for a better message * - 2300 - `3404d197 `_ - 2017-12-08 - xavier dupré - fix unit test on local jenkins * - 2299 - `7899dea5 `_ - 2017-12-08 - xavier dupré - fix unit test * - 2298 - `684b4219 `_ - 2017-12-08 - xavier dupré - fix unit test * - 2297 - `2e25b380 `_ - 2017-12-08 - xavier dupré - better display in unit test * - 2296 - `842757df `_ - 2017-12-08 - xavier dupré - update unit test * - 2295 - `960cc53d `_ - 2017-12-08 - xavier dupré - update unit test * - 2294 - `1f8650d9 `_ - 2017-12-07 - xavier dupré - fix bug on linux * - 2293 - `7b55cf63 `_ - 2017-12-07 - xavier dupré - update unit test on linux * - 2292 - `ac23b199 `_ - 2017-12-07 - xavier dupré - add function reap_children * - 2291 - `69c80548 `_ - 2017-12-06 - xavier dupré - remove unnecessary import * - 2290 - `6b54d906 `_ - 2017-12-04 - xavier dupré - enable disabled tests * - 2289 - `4c71ec95 `_ - 2017-12-04 - xavier dupré - remove one print * - 2288 - `047d693e `_ - 2017-12-04 - xavier dupré - fix issue #85, rename cmdref function name * - 2287 - `7e1bc21f `_ - 2017-12-04 - xavier dupré - better error message * - 2286 - `b7df7e9d `_ - 2017-12-04 - xavier dupré - skip a parameter in fLOG (when printing) * - 2285 - `d59a9cfb `_ - 2017-12-02 - xavier dupré - clean docstring from sphinx syntax #84 * - 2284 - `04f47c3e `_ - 2017-12-01 - xavier dupré - propagate options for call_cli_function * - 2282 - `b1baeebd `_ - 2017-12-01 - xavier dupré - fix default path for python on appveyor * - 2281 - `69c1a226 `_ - 2017-12-01 - xavier dupré - fix appeveyor * - 2280 - `29bc329e `_ - 2017-11-30 - xavier dupré - update full path * - 2279 - `de989be0 `_ - 2017-11-29 - xavier dupré - fix path issue on linux * - 2278 - `639b6686 `_ - 2017-11-29 - xavier dupré - update script, fix path, add methods in ExtTestCase * - 2277 - `f6e286c7 `_ - 2017-11-29 - xavier dupré - update script * - 2276 - `2e47a9e3 `_ - 2017-11-28 - xavier dupré - upgrade to 1.6 * - 2275 - `973fcb1d `_ - 2017-11-24 - xavier dupré - utf-8 * - 2273 - `35730c6b `_ - 2017-11-24 - xavier dupré - remove the gz upload by default * - 2272 - `6d93bf9c `_ - 2017-11-23 - xavier dupré - disable github api test on ci * - 2271 - `f7058c13 `_ - 2017-11-22 - xavier dupré - add copy of data extension when building the documentation * - 2269 - `8a569cfd `_ - 2017-11-19 - xavier dupré - documentation + add a function which simplifies the notebook testing * - 2268 - `ded4cfc3 `_ - 2017-11-19 - xavier dupré - fix for travis and API limits * - 2267 - `7f3d010a `_ - 2017-11-19 - xavier dupré - fix issue with authentified calls to github API * - 2266 - `15e34edc `_ - 2017-11-19 - xavier dupré - add a function to call github api * - 2265 - `7fbc486d `_ - 2017-11-19 - xavier dupré - remove warnings * - 2264 - `a740899f `_ - 2017-11-19 - xavier dupré - remove strong dependency on sphinxcontrib.jsdemo * - 2263 - `b5ccc277 `_ - 2017-11-16 - xavier dupré - improve badges, add more unit tests * - 2262 - `e42fad5d `_ - 2017-11-13 - xavier dupré - fix appveyor syntax * - 2261 - `e013745f `_ - 2017-11-13 - xavier dupré - add artifacts to appveyor * - 2260 - `392c22cd `_ - 2017-11-13 - xavier dupré - add artifacts in appveyor * - 2259 - `c10134a3 `_ - 2017-11-12 - xavier dupré - space dash * - 2258 - `c8758e9b `_ - 2017-11-12 - xavier dupré - fix mistake when a value is None * - 2257 - `a747895f `_ - 2017-11-12 - xavier dupré - remove non-ascii character before converter a notebook into PDF * - 2256 - `e8a5009d `_ - 2017-11-12 - xavier dupré - update python version * - 2255 - `bb33e6ee `_ - 2017-11-12 - xavier dupré - update python version * - 2254 - `e126295d `_ - 2017-11-11 - xavier dupré - add parameter _pp to use pprint * - 2253 - `2d96c7b8 `_ - 2017-11-11 - xavier dupré - add space in notebook coverage * - 2252 - `d96343d6 `_ - 2017-11-10 - xavier dupré - add supported extension when copying data to documentation folder * - 2251 - `8b8aa7c6 `_ - 2017-11-10 - xavier dupré - filters out a matplotlib warning * - 2250 - `119cdf0b `_ - 2017-11-04 - xavier dupré - remove unneeded module * - 2249 - `09da4939 `_ - 2017-11-04 - xavier dupré - remove filelock * - 2248 - `977a8964 `_ - 2017-11-04 - xavier dupré - fix the use of filelock * - 2247 - `07b2cb37 `_ - 2017-11-03 - xavier dupré - use of filelock to prevent some issues when writing a file file * - 2246 - `c0cd47b1 `_ - 2017-10-23 - xavier dupré - add modules for the documentation * - 2245 - `b0e43e4d `_ - 2017-10-23 - xavier dupré - better logging for tkinter * - 2244 - `8f98be4b `_ - 2017-10-22 - xavier dupré - improve snippet building for a notebook * - 2243 - `fcd29fdc `_ - 2017-10-22 - xavier dupré - support another tag for snippets * - 2242 - `3727c03f `_ - 2017-10-21 - xavier dupré - better error message when getting a snippet for a notebook * - 2241 - `0f94a0d2 `_ - 2017-10-21 - xavier dupré - update notebook processing for bokeh * - 2240 - `e8cbe442 `_ - 2017-10-21 - xavier dupré - continuing fixing issue for bokeh in a notebook * - 2239 - `cd28c7c0 `_ - 2017-10-21 - xavier dupré - regular expression, run_notebook, notebook snippet * - 2238 - `5e262f61 `_ - 2017-10-21 - xavier dupré - fix assertion message * - 2237 - `33766392 `_ - 2017-10-21 - xavier dupré - fix notebook execution numbers * - 2236 - `7dbeb8c1 `_ - 2017-10-21 - xavier dupré - fix another bug when converting notebook including bokeh graphs * - 2235 - `c238db97 `_ - 2017-10-20 - xavier dupré - fix height estimation for notebook including javascript produced by bokeh * - 2233 - `7f9afd44 `_ - 2017-10-20 - xavier dupré - add notebook number due to notebook 5.1.0 * - 2232 - `362c45e1 `_ - 2017-10-20 - xavier dupré - add notebook number due to notebook 5.1.0 * - 2231 - `430408b5 `_ - 2017-10-18 - xavier dupré - catch warning around keyring * - 2230 - `28a3b4e5 `_ - 2017-10-17 - xavier dupré - better error message * - 2228 - `ea3b611c `_ - 2017-10-13 - xavier dupré - fix indentation issue in documentation (doxypy) + documentation * - 2227 - `3d43cd95 `_ - 2017-10-13 - xavier dupré - pep8 * - 2225 - `7736d8af `_ - 2017-10-12 - xavier dupré - fix a bug for youtube extension and pdf * - 2224 - `21e61ac5 `_ - 2017-10-12 - xavier dupré - reduce the size of summaries for every documented module * - 2223 - `ceb6bb7d `_ - 2017-10-09 - xavier dupré - fix windows scripts * - 2222 - `2700848c `_ - 2017-10-07 - xavier dupré - fix youtube extension * - 2221 - `87bdb23b `_ - 2017-10-07 - xavier dupré - fix unittests * - 2220 - `71bfebdc `_ - 2017-10-06 - xavier dupré - add youtube sphinx extension * - 2219 - `a0df7f89 `_ - 2017-10-06 - xavier dupré - add sphinx youtube extension in default list * - 2217 - `6eaded04 `_ - 2017-10-03 - xavier dupré - fix documentation * - 2216 - `23bd2ccc `_ - 2017-10-02 - xavier dupré - improve documentation summaries * - 2215 - `b1b4ba2b `_ - 2017-09-24 - xavier dupré - add more method in ExtTestCase * - 2214 - `affdf3ad `_ - 2017-09-23 - xavier dupré - pep8 * - 2213 - `cbab663d `_ - 2017-09-23 - xavier dupré - blog post + documentation + more assert function * - 2212 - `8edf3de0 `_ - 2017-09-23 - xavier dupré - adds function for unit test cases * - 2211 - `f1a25ef6 `_ - 2017-09-21 - xavier dupré - implements feature #77 , custom test class * - 2210 - `05a3541e `_ - 2017-09-20 - xavier dupré - implements #78 - rename unit test folder * - 2209 - `e3ce446b `_ - 2017-09-20 - xavier dupré - catch an exception and display a better error message * - 2208 - `e07a2ccb `_ - 2017-09-19 - xavier dupré - add parameter max_path to get_temp_folder * - 2207 - `af91cd2b `_ - 2017-09-17 - xavier dupré - update artifacts patterns * - 2206 - `42882834 `_ - 2017-09-17 - xavier dupré - add artifacts for jenkins * - 2205 - `a8202cbd `_ - 2017-09-16 - xavier dupré - fix parth issue in an example * - 2204 - `9db2d966 `_ - 2017-09-16 - xavier dupré - fix example + better log during documentation * - 2203 - `76501659 `_ - 2017-09-16 - xavier dupré - pep8 * - 2202 - `4bc9dc5f `_ - 2017-09-16 - xavier dupré - fix issue #76 (tells time) + improve coverage notrebook report * - 2201 - `e49066be `_ - 2017-09-15 - xavier dupré - fix for python 3.5 * - 2200 - `df5aa6d1 `_ - 2017-09-15 - xavier dupré - fix differences between python 3.5, 3.6 * - 2199 - `cbb476d0 `_ - 2017-09-14 - xavier dupré - add winzipfile to deal with a bug on windows * - 2198 - `0af8315a `_ - 2017-09-12 - xavier dupré - remove sharenet link when configured to be removed in blogpost * - 2197 - `9735a47e `_ - 2017-09-10 - xavier dupré - catch encoding issues if any * - 2196 - `ab510bc2 `_ - 2017-09-10 - xavier dupré - update unit test stat_helper, clean file *thumb.png * - 2195 - `0dc429be `_ - 2017-09-10 - xavier dupré - add function to find links to notebook in the documentation * - 2194 - `a0882fcd `_ - 2017-09-09 - xavier dupré - copy code coverage in a shared location * - 2193 - `b4af0775 `_ - 2017-09-09 - xavier dupré - disable one unit test on travis * - 2191 - `01682495 `_ - 2017-09-09 - xavier dupré - add unit test for #74 * - 2190 - `86058164 `_ - 2017-09-09 - xavier dupré - fix bug #74 - doxypy failing with annotation * - 2189 - `03356249 `_ - 2017-09-09 - xavier dupré - documentation, add function nb2rst, better error message * - 2188 - `38b430bb `_ - 2017-09-08 - xavier dupré - fix None module_name #73 * - 2187 - `361646da `_ - 2017-09-08 - xavier dupré - copy coverage report for #73 * - 2186 - `fea76b42 `_ - 2017-09-07 - xavier dupré - fix IndexError exception while generation the documentation * - 2185 - `b398f9da `_ - 2017-09-05 - xavier dupré - fix unit test after last change * - 2184 - `14d25876 `_ - 2017-09-05 - xavier dupré - fix image link in notebook gallery * - 2183 - `e53c389f `_ - 2017-09-05 - xavier dupré - fix unit test * - 2182 - `f90ee080 `_ - 2017-09-05 - xavier dupré - add parameter neg_pattern for #68 * - 2181 - `797e68c0 `_ - 2017-09-05 - xavier dupré - better error image * - 2180 - `82162873 `_ - 2017-09-04 - xavier dupré - implements #72 , another layout for notebooks * - 2179 - `1146ff58 `_ - 2017-09-04 - xavier dupré - fix bug #68, clean notebook galleries * - 2178 - `75926c08 `_ - 2017-09-03 - xavier dupré - remove checkpoints from the list of notebooks * - 2177 - `2922aa57 `_ - 2017-09-03 - xavier dupré - implements #71 - skip old notebooks execution * - 2176 - `2d18d700 `_ - 2017-09-02 - xavier dupré - add default websites * - 2175 - `b5529b92 `_ - 2017-09-02 - xavier dupré - add notebook to test add_missing_development_version * - 2174 - `08ee43a5 `_ - 2017-09-01 - xavier dupré - add epkg matplotlib * - 2173 - `349a3ce7 `_ - 2017-09-01 - xavier dupré - fix a misspelling * - 2172 - `92e15301 `_ - 2017-09-01 - xavier dupré - pep8 * - 2171 - `fa836a9c `_ - 2017-09-01 - xavier dupré - better logs + clean examples folder gallery * - 2170 - `110175db `_ - 2017-08-31 - xavier dupré - less logs for one unit test * - 2168 - `8f528861 `_ - 2017-08-31 - xavier dupré - do not overwrite toctree if cannot remove TocTreeCollector * - 2167 - `24b9b6a0 `_ - 2017-08-31 - xavier dupré - fix unit est for #69 * - 2166 - `cc4055ff `_ - 2017-08-31 - xavier dupré - fix bug #69 about toctree * - 2165 - `4d36f395 `_ - 2017-08-31 - xavier dupré - fix name in unit test * - 2164 - `78e37a49 `_ - 2017-08-31 - xavier dupré - update notebook git_dataframes * - 2163 - `de307e30 `_ - 2017-08-30 - xavier dupré - better searchable logs * - 2162 - `8b5d5d59 `_ - 2017-08-30 - xavier dupré - better error message * - 2161 - `477f06b1 `_ - 2017-08-29 - xavier dupré - add missing imports * - 2160 - `e84831c3 `_ - 2017-08-29 - xavier dupré - update notebook on history * - 2159 - `c8b1e26a `_ - 2017-08-29 - xavier dupré - changes the display of the coverage, improve a notebook on git * - 2158 - `3ffde70e `_ - 2017-08-29 - xavier dupré - fix a bug about cached urls in notebooks * - 2156 - `047dafa6 `_ - 2017-08-27 - xavier dupré - fix a bug for #67 * - 2155 - `1cd201bf `_ - 2017-08-27 - xavier dupré - fix a bug for #67 * - 2154 - `5fa1d8ac `_ - 2017-08-27 - xavier dupré - implement #67 - tocdelay * - 2153 - `96ae8207 `_ - 2017-08-27 - xavier dupré - investigate a failure on circleci * - 2152 - `31377b5e `_ - 2017-08-27 - xavier dupré - enables log * - 2151 - `b00ee692 `_ - 2017-08-27 - xavier dupré - display for circleci * - 2150 - `2e02019e `_ - 2017-08-27 - xavier dupré - fix a warning in an automated toctree * - 2149 - `a5d2e3da `_ - 2017-08-27 - xavier dupré - implements #62, #66, add background * - 2148 - `60c862fa `_ - 2017-08-27 - xavier dupré - add only:: html for blogs * - 2147 - `5e71567b `_ - 2017-08-26 - xavier dupré - add warning to filter out * - 2146 - `f1341b81 `_ - 2017-08-26 - xavier dupré - fix issue #65 - clean readme * - 2145 - `8af560f7 `_ - 2017-08-25 - xavier dupré - disable unit test on travis * - 2144 - `8dd27b49 `_ - 2017-08-25 - xavier dupré - fix bracket issue * - 2143 - `8eaeb30e `_ - 2017-08-25 - xavier dupré - improve git error message + fix size of git record + better error message * - 2142 - `81a68eb0 `_ - 2017-08-25 - xavier dupré - move a unit test into the SKIP series, add a wanring * - 2141 - `13b9031a `_ - 2017-08-25 - xavier dupré - fix unit test + avoid rewriting files when there is not change (cleaning) * - 2140 - `0d185118 `_ - 2017-08-25 - xavier dupré - fix unit test * - 2139 - `59b39b48 `_ - 2017-08-25 - xavier dupré - fix unit test * - 2138 - `d9f5b987 `_ - 2017-08-25 - xavier dupré - remove unnecessary file * - 2137 - `75476c0c `_ - 2017-08-25 - xavier dupré - catch zip extension in git log, add list_table in df2rst * - 2136 - `3f81e3ac `_ - 2017-08-25 - xavier dupré - add notebook + requirements * - 2135 - `549ecdac `_ - 2017-08-25 - xavier dupré - extend functionalities to get details about files in the logs * - 2134 - `6befd7dc `_ - 2017-08-25 - xavier dupré - fix coverage report * - 2133 - `475ed654 `_ - 2017-08-22 - xavier dupré - better error message * - 2132 - `8b43dcf5 `_ - 2017-08-22 - xavier dupré - add links * - 2131 - `876845ec `_ - 2017-08-22 - xavier dupré - fix writing a copy of the non modified final latex * - 2130 - `dacbb2ab `_ - 2017-08-21 - xavier dupré - fix issues with quotes, add a copy of the original latex file * - 2129 - `e70e69f3 `_ - 2017-08-21 - xavier dupré - add package etex for latex (issue with xy on linux - texline) * - 2128 - `7d6d4c78 `_ - 2017-08-20 - xavier dupré - increase the level of an automated toctree * - 2127 - `f92ac5dc `_ - 2017-08-20 - xavier dupré - add so extension when copying files * - 2126 - `a38832ac `_ - 2017-08-20 - xavier dupré - update regular expressions * - 2125 - `e1c78cf9 `_ - 2017-08-20 - xavier dupré - update circleci * - 2124 - `b41a442d `_ - 2017-08-20 - xavier dupré - update copy instructions * - 2123 - `6158b7cf `_ - 2017-08-20 - xavier dupré - update circleci artifacts * - 2122 - `3aad8d4c `_ - 2017-08-20 - xavier dupré - update documentation steps for travis * - 2121 - `e2199055 `_ - 2017-08-20 - xavier dupré - update missing dependencies for circleci * - 2120 - `5db2581c `_ - 2017-08-20 - xavier dupré - add scikit-learn for the documentation + ; --> : on linux * - 2119 - `4f34e843 `_ - 2017-08-20 - xavier dupré - fix bug for appveyor * - 2118 - `3780dfe9 `_ - 2017-08-20 - xavier dupré - replace ; by : on linux * - 2117 - `71423927 `_ - 2017-08-20 - xavier dupré - better coverage + fix a path issue on linux and pdflatex * - 2116 - `944dc04e `_ - 2017-08-20 - xavier dupré - fix one unit test on circleci, better error message * - 2115 - `8de5d979 `_ - 2017-08-20 - xavier dupré - better error message + one fix for linux * - 2114 - `ee5c6ae9 `_ - 2017-08-20 - xavier dupré - disable unrar (not available easily on ubuntu) * - 2113 - `b579d950 `_ - 2017-08-20 - xavier dupré - fix issues on linux, add blog post * - 2112 - `d06ff62f `_ - 2017-08-20 - xavier dupré - enable test on circleci, update setup.py * - 2111 - `25061b46 `_ - 2017-08-20 - xavier dupré - move one quote and fix a bug on linux * - 2110 - `ab7fa291 `_ - 2017-08-20 - xavier dupré - pep8 * - 2109 - `54a42249 `_ - 2017-08-20 - xavier dupré - catch more error * - 2108 - `9aa60fea `_ - 2017-08-20 - xavier dupré - update requiremnts * - 2107 - `3bbc6201 `_ - 2017-08-20 - xavier dupré - update requirements * - 2106 - `ddbc34cb `_ - 2017-08-20 - xavier dupré - add one missing dependency * - 2105 - `07005ace `_ - 2017-08-20 - xavier dupré - update requirements * - 2104 - `a6ab81fe `_ - 2017-08-20 - xavier dupré - add inkscape to the build * - 2103 - `fcb9fa28 `_ - 2017-08-20 - xavier dupré - remove extra spaces when calling pdflatex * - 2102 - `1fba24e3 `_ - 2017-08-20 - xavier dupré - fix pandoc import * - 2101 - `8fecfdbf `_ - 2017-08-20 - xavier dupré - update one notebook * - 2100 - `1be693a1 `_ - 2017-08-20 - xavier dupré - fix a path for linux * - 2099 - `1fb620a9 `_ - 2017-08-20 - xavier dupré - fix unit test on linux * - 2098 - `b0d525b4 `_ - 2017-08-20 - xavier dupré - more display * - 2097 - `00406daf `_ - 2017-08-20 - xavier dupré - more display * - 2096 - `b349d625 `_ - 2017-08-20 - xavier dupré - catch exception in a better way * - 2095 - `a41e362f `_ - 2017-08-20 - xavier dupré - couple of fixes for linux * - 2094 - `1dc6fc64 `_ - 2017-08-19 - xavier dupré - fix path not linux * - 2093 - `fe218ea9 `_ - 2017-08-19 - xavier dupré - fix path for linux * - 2092 - `43a07110 `_ - 2017-08-19 - xavier dupré - fix a couple of thinks for linux * - 2091 - `17d004ad `_ - 2017-08-19 - xavier dupré - fix timing of unit tests * - 2090 - `0f662fed `_ - 2017-08-19 - xavier dupré - fixes for linux * - 2089 - `33108126 `_ - 2017-08-19 - xavier dupré - texlive * - 2088 - `eb5d9a3e `_ - 2017-08-19 - xavier dupré - circlecli * - 2087 - `10f93d10 `_ - 2017-08-19 - xavier dupré - remove prompt * - 2086 - `a424e2d8 `_ - 2017-08-19 - xavier dupré - circleci * - 2085 - `ed668049 `_ - 2017-08-19 - xavier dupré - add latex * - 2084 - `4a064442 `_ - 2017-08-19 - xavier dupré - sudo * - 2083 - `d5c39660 `_ - 2017-08-19 - xavier dupré - update pandoc * - 2082 - `014910c9 `_ - 2017-08-19 - xavier dupré - circleci + pandoc + latex * - 2081 - `245c2129 `_ - 2017-08-19 - xavier dupré - fix sphinx conf * - 2080 - `9ea6f666 `_ - 2017-08-19 - xavier dupré - few fixes for circleci * - 2079 - `8d5f6f07 `_ - 2017-08-19 - xavier dupré - add badge for circleci * - 2078 - `8368057d `_ - 2017-08-19 - xavier dupré - second series of fixes for circleci * - 2077 - `820c716d `_ - 2017-08-19 - xavier dupré - fix issues for circleci * - 2076 - `717db750 `_ - 2017-08-19 - xavier dupré - add support for circleci * - 2075 - `c9df149f `_ - 2017-08-19 - xavier dupré - fix circleci * - 2074 - `d3c49c10 `_ - 2017-08-19 - xavier dupré - remove sphinxcontrib-fancybox * - 2073 - `8b89fd71 `_ - 2017-08-19 - xavier dupré - new configuration for circleci * - 2072 - `7bda5348 `_ - 2017-08-19 - xavier dupré - change python version for circleci * - 2071 - `d1e1d9f1 `_ - 2017-08-19 - xavier dupré - rename circle.yml * - 2070 - `abe4dd08 `_ - 2017-08-19 - xavier dupré - clean unnecessary files * - 2069 - `845e1622 `_ - 2017-08-19 - xavier dupré - add circle.yml * - 2068 - `c480b0ec `_ - 2017-08-17 - xavier dupré - documentation, change column size * - 2067 - `e260694d `_ - 2017-08-17 - xavier dupré - fix path in default_filter_warning * - 2065 - `6b0d5f5c `_ - 2017-08-16 - xavier dupré - documentation + script * - 2064 - `2596532f `_ - 2017-08-16 - xavier dupré - fix notebook coverage reprot * - 2063 - `aba5c2e9 `_ - 2017-08-16 - xavier dupré - change documentation theme, add coverage to coverage report * - 2062 - `2f3bf417 `_ - 2017-08-15 - xavier dupré - fix type issue * - 2061 - `93bf411c `_ - 2017-08-15 - xavier dupré - hide MatplotlibDeprecationWarning from the list of displayed warnings * - 2060 - `09331273 `_ - 2017-08-15 - xavier dupré - implement notebook coverage badge #59 * - 2059 - `5cf00eeb `_ - 2017-08-15 - xavier dupré - fix missing columns * - 2058 - `8b904816 `_ - 2017-08-15 - xavier dupré - update report on notebooks * - 2057 - `eaf71400 `_ - 2017-08-15 - xavier dupré - pep8 * - 2056 - `5737b293 `_ - 2017-08-15 - xavier dupré - move one unit test in skip series * - 2055 - `f23ec1d4 `_ - 2017-08-15 - xavier dupré - fix documentation * - 2054 - `b0708b21 `_ - 2017-08-15 - xavier dupré - fix key in execute_notebooks_list * - 2053 - `6b947496 `_ - 2017-08-15 - xavier dupré - add index when showing the notebook coverage * - 2052 - `0b20a464 `_ - 2017-08-15 - xavier dupré - fix unit test introduced by previous commits #52 * - 2051 - `299f85dd `_ - 2017-08-14 - xavier dupré - add notebook coverage report to documentation #52- #52 * - 2050 - `1d103e6c `_ - 2017-08-14 - xavier dupré - compute a kind of coverage report for notebooks * - 2049 - `7c3bdb2c `_ - 2017-08-14 - xavier dupré - fix paths, replaxce EOL for #52 * - 2048 - `d417d40e `_ - 2017-08-14 - xavier dupré - fix unit test after a change on #52 * - 2047 - `20307183 `_ - 2017-08-13 - xavier dupré - fix previous checkin for issue #52 * - 2046 - `7c621d0a `_ - 2017-08-13 - xavier dupré - first step towards #52, dump the results of the notebooks * - 2045 - `4dae070e `_ - 2017-08-13 - xavier dupré - disable one file only used for unit test * - 2044 - `081c6ef6 `_ - 2017-08-13 - xavier dupré - fix #57, history is now generated * - 2043 - `12934efb `_ - 2017-08-12 - xavier dupré - fix missing dependency * - 2042 - `7e471984 `_ - 2017-08-12 - xavier dupré - add module releases with a couple of modification for #57 * - 2041 - `6fca57a9 `_ - 2017-08-11 - xavier dupré - fix unit test (misspelling) #57 * - 2040 - `fde75861 `_ - 2017-08-11 - xavier dupré - a couple of fixes for #57 but still not perfect * - 2039 - `2fa042dc `_ - 2017-08-11 - xavier dupré - remove release from the list of sphinx extension (see #57), small fixes about the documentation * - 2038 - `e9434aaf `_ - 2017-08-11 - xavier dupré - add missing handlers for RST builder * - 2037 - `16678f9c `_ - 2017-08-11 - xavier dupré - fix for #56 as sphinx does not allow functions as values in the configuration * - 2036 - `eddf2bba `_ - 2017-08-11 - xavier dupré - implement feature #56 (epkg) * - 2035 - `4bc46a0f `_ - 2017-08-11 - xavier dupré - fix misspelling * - 2034 - `7585a9ca `_ - 2017-08-11 - xavier dupré - feature #53 * - 2033 - `1b5c0551 `_ - 2017-08-11 - xavier dupré - fix issue #54 fix searchbox for sphinx_rtd_theme * - 2032 - `e789fbb0 `_ - 2017-08-11 - xavier dupré - pep8 * - 2031 - `4dcdb2ad `_ - 2017-08-11 - xavier dupré - add more checking when generating the documentation * - 2030 - `90b1a143 `_ - 2017-08-10 - xavier dupré - fix a CSS bug + history * - 2028 - `5b9c2f68 `_ - 2017-08-09 - xavier dupré - fix unit test * - 2027 - `cd664b6b `_ - 2017-08-09 - xavier dupré - fix issue with matplotlib and plot_directive * - 2026 - `f9ed7b05 `_ - 2017-08-09 - xavier dupré - delay import which change matplotlib backend * - 2025 - `a7b65478 `_ - 2017-08-08 - xavier dupré - add dependency on releases (sphinx) * - 2024 - `21e2715b `_ - 2017-08-07 - xavier dupré - ON_ONLINE --> ON_BOTH for jenkins * - 2023 - `d675f58f `_ - 2017-08-07 - xavier dupré - modifies rst2html to test custom builder * - 2022 - `deb72217 `_ - 2017-08-07 - xavier dupré - add license + better error message for NbImage * - 2021 - `4154e058 `_ - 2017-08-07 - xavier dupré - fix issue with cleaning code * - 2020 - `3a804756 `_ - 2017-08-06 - xavier dupré - remove circular import * - 2019 - `b7ed22ae `_ - 2017-08-06 - xavier dupré - add parameter nopep8 to runpython * - 2018 - `d28548fc `_ - 2017-08-04 - xavier dupré - documentation, api, tutorial * - 2017 - `0f5b7a6a `_ - 2017-08-04 - xavier dupré - update unit test after change about runpython * - 2016 - `426df004 `_ - 2017-08-03 - xavier dupré - runpython: In --> >>> * - 2015 - `77b1f4da `_ - 2017-08-03 - xavier dupré - update unit test * - 2014 - `29e57a25 `_ - 2017-08-03 - xavier dupré - update jenkins trigger * - 2013 - `31aa82bf `_ - 2017-08-02 - xavier dupré - pep8 * - 2012 - `0e905bfa `_ - 2017-08-02 - xavier dupré - update error message * - 2011 - `49e7474b `_ - 2017-08-02 - xavier dupré - update errror messages and documentation * - 2010 - `c380fbf3 `_ - 2017-08-02 - xavier dupré - update error messages * - 2009 - `6078d414 `_ - 2017-07-24 - xavier dupré - fix exception message * - 2008 - `6f85e8ea `_ - 2017-07-22 - xavier dupré - better error message * - 2006 - `141ce900 `_ - 2017-07-19 - xavier dupré - add extension postcontents * - 2005 - `c50b1442 `_ - 2017-07-18 - xavier dupré - fix inifinte loop * - 2004 - `7d72bb2f `_ - 2017-07-17 - xavier dupré - remove unncessary test * - 2003 - `b551749a `_ - 2017-07-17 - xavier dupré - change the module to exclude less previously * - 2002 - `db3bbf94 `_ - 2017-07-17 - xavier dupré - delay one import for the documentation * - 2001 - `ce7ef14b `_ - 2017-07-17 - xavier dupré - fix boolean constant * - 2000 - `c124359e `_ - 2017-07-17 - xavier dupré - add or remove option to clean a repository * - 1999 - `eec7e51c `_ - 2017-07-17 - xavier dupré - fix an issue with cli * - 1998 - `d586aca2 `_ - 2017-07-16 - xavier dupré - add command line pyq_sync * - 1996 - `2d5f6334 `_ - 2017-07-16 - xavier dupré - automate the creation of a command line * - 1995 - `ec334118 `_ - 2017-07-16 - xavier dupré - add one unit test * - 1994 - `69b19ad1 `_ - 2017-07-16 - xavier dupré - fix startup * - 1993 - `b5882b67 `_ - 2017-07-16 - xavier dupré - add startup option for a job * - 1992 - `6f7855eb `_ - 2017-07-16 - xavier dupré - handle option adjust_scheduler * - 1991 - `5b244852 `_ - 2017-07-15 - xavier dupré - improve the documentation * - 1990 - `da44274b `_ - 2017-07-14 - xavier dupré - fix a bug in githublink * - 1986 - `7626974d `_ - 2017-07-14 - xavier dupré - enable scheduling when defining jobs with yaml * - 1985 - `8347c294 `_ - 2017-07-13 - xavier dupré - catch en error and raise an exception * - 1984 - `0fd3a08f `_ - 2017-07-13 - xavier dupré - fix import issue * - 1983 - `1652bb9a `_ - 2017-07-13 - xavier dupré - fix dependencies * - 1982 - `ce33fc94 `_ - 2017-07-13 - xavier dupré - fix bug with the first line of the docstring * - 1981 - `2db527ce `_ - 2017-07-12 - xavier dupré - fix RST format for all the extension * - 1980 - `478e47a9 `_ - 2017-07-12 - xavier dupré - add rst output to documentation * - 1978 - `da040c94 `_ - 2017-07-12 - xavier dupré - add rst builder for sphinx * - 1977 - `b18e96dd `_ - 2017-07-11 - xavier dupré - fix documentation * - 1976 - `b4c163cb `_ - 2017-07-11 - xavier dupré - remove unnecessary import * - 1975 - `a6bee274 `_ - 2017-07-11 - xavier dupré - add role epkg and fixes some warning in the documentation * - 1974 - `ee20d8ec `_ - 2017-07-11 - xavier dupré - add command cmdref * - 1973 - `de0084c4 `_ - 2017-07-10 - xavier dupré - better documentation, add link to API summary in side bar * - 1972 - `1750f4a9 `_ - 2017-07-10 - xavier dupré - fix a few bugs in docassert and tpl_role * - 1971 - `ce440342 `_ - 2017-07-09 - xavier dupré - add extension tpl_role * - 1969 - `d8c184a9 `_ - 2017-07-09 - xavier dupré - more unit test, better documentation * - 1967 - `01a0e876 `_ - 2017-07-09 - xavier dupré - improve tiny bugs for the documentation * - 1966 - `f7c83727 `_ - 2017-07-08 - xavier dupré - disable one test on trav * - 1965 - `579b57ac `_ - 2017-07-08 - xavier dupré - add function try_add_config_value for sphinx * - 1964 - `0bfab615 `_ - 2017-07-08 - xavier dupré - pep8 * - 1963 - `391d48cc `_ - 2017-07-08 - xavier dupré - add a warning + fix an import issue * - 1962 - `c0b5a9f7 `_ - 2017-07-07 - xavier dupré - fix bad syntax * - 1961 - `f50ce0c1 `_ - 2017-07-07 - xavier dupré - fix a bug in rst2html * - 1960 - `d60456d9 `_ - 2017-07-07 - xavier dupré - add sphinx extension autosignature * - 1959 - `c2b69e9e `_ - 2017-07-06 - xavier dupré - remove one exception * - 1958 - `b0418c04 `_ - 2017-07-06 - xavier dupré - pep8 * - 1957 - `73476c5e `_ - 2017-07-06 - xavier dupré - remove support for sphinx < 1.6 * - 1956 - `ae125fa4 `_ - 2017-07-05 - xavier dupré - fix issue in blog post + docassert * - 1955 - `a3de3bb1 `_ - 2017-07-05 - xavier dupré - fix rst2html, still needs to catch warnings * - 1954 - `969e9f67 `_ - 2017-07-05 - xavier dupré - fix broken unit test * - 1953 - `3b76f87f `_ - 2017-07-04 - xavier dupré - pep8 * - 1952 - `11fa8c22 `_ - 2017-07-04 - xavier dupré - enable sphinx output for rst2html (not working yet) * - 1951 - `161c3b27 `_ - 2017-07-04 - xavier dupré - add emit event * - 1950 - `8c310bf8 `_ - 2017-07-04 - xavier dupré - one missing refactored import * - 1949 - `277e883f `_ - 2017-07-04 - xavier dupré - renaming files * - 1948 - `a03a1412 `_ - 2017-07-04 - xavier dupré - add one warning to remove * - 1947 - `0b1fe860 `_ - 2017-07-04 - xavier dupré - update documentation + fix in bigger and sharenet * - 1946 - `69ddd962 `_ - 2017-07-04 - xavier dupré - pep8 * - 1945 - `5de99b9b `_ - 2017-07-04 - xavier dupré - update unit due to previous changes * - 1944 - `852aeb90 `_ - 2017-07-03 - xavier dupré - move unit test + fix an issue in docassert * - 1943 - `0cf689ac `_ - 2017-07-03 - xavier dupré - improve behavior of rst2html, includes sphinx directives * - 1942 - `70d03a58 `_ - 2017-07-03 - xavier dupré - fix documentation * - 1941 - `619a9944 `_ - 2017-07-03 - xavier dupré - fix a bug * - 1940 - `161a590d `_ - 2017-07-03 - xavier dupré - add tool to check list of documented parameters * - 1939 - `e1021b22 `_ - 2017-07-02 - xavier dupré - documentation API * - 1938 - `3518c111 `_ - 2017-07-01 - xavier dupré - add warning to filter out * - 1937 - `9a47e898 `_ - 2017-07-01 - xavier dupré - switch to absolute path * - 1936 - `93fd160c `_ - 2017-07-01 - xavier dupré - add helper for setup.py * - 1935 - `fcb4e45d `_ - 2017-06-29 - xavier dupré - add build_ext as an available command * - 1934 - `9197d09f `_ - 2017-06-29 - xavier dupré - 35 to 36 * - 1932 - `ada89815 `_ - 2017-06-25 - xavier dupré - remove svg from pdf * - 1931 - `7af9e9b0 `_ - 2017-06-18 - xavier dupré - srill fixing issues with plotly * - 1930 - `769a49d1 `_ - 2017-06-18 - xavier dupré - update error message * - 1929 - `a2d10fb9 `_ - 2017-06-18 - xavier dupré - add plotly tag * - 1928 - `9f4e2c07 `_ - 2017-06-17 - xavier dupré - remove an assert * - 1927 - `68f9de84 `_ - 2017-06-17 - xavier dupré - add support for cell added by plotly * - 1926 - `2a4a3982 `_ - 2017-06-17 - xavier dupré - filter out one warnings when importing ipykernel * - 1924 - `3af37c91 `_ - 2017-06-15 - xavier dupré - add parameter file_filter * - 1923 - `752cca0b `_ - 2017-06-12 - xavier dupré - fix unit test * - 1922 - `59bbbb8f `_ - 2017-06-11 - xavier dupré - update jenkins build * - 1921 - `e890e366 `_ - 2017-06-07 - xavier dupré - update blog post * - 1920 - `188cdb22 `_ - 2017-06-06 - xavier dupré - fix documentation generation * - 1919 - `b436eec7 `_ - 2017-06-06 - xavier dupré - small updates for the sphinx generation * - 1918 - `2c4adb58 `_ - 2017-06-05 - xavier dupré - fix a small misspelling * - 1917 - `f81141e3 `_ - 2017-06-05 - xavier dupré - blog post to warn about a bug in sphinx for custom css * - 1916 - `22d2068b `_ - 2017-06-04 - xavier dupré - fix for travid * - 1915 - `22b211da `_ - 2017-06-04 - xavier dupré - another fix for travis * - 1914 - `9f0aead5 `_ - 2017-06-04 - xavier dupré - change for travis * - 1913 - `086846ba `_ - 2017-06-04 - xavier dupré - fix some unit test, refactoring * - 1912 - `2150c7fb `_ - 2017-06-04 - xavier dupré - update unit test to get more precise feedback * - 1911 - `a96810f9 `_ - 2017-06-04 - xavier dupré - split unit test * - 1910 - `5f8c7ec2 `_ - 2017-06-04 - xavier dupré - fix upgrade to sphinx 1.6 * - 1909 - `58083bb5 `_ - 2017-05-25 - xavier dupré - disable one unit test for travis * - 1908 - `84a65aac `_ - 2017-05-25 - xavier dupré - add function unrar files (relies on 7z) * - 1907 - `c8f55344 `_ - 2017-05-23 - xavier dupré - fix unit test about jenkins * - 1906 - `1dccb92b `_ - 2017-05-23 - xavier dupré - fix path in jenkins job definition + update jenkins jobs * - 1905 - `353beaf0 `_ - 2017-05-22 - xavier dupré - update unit test about jenkins build * - 1904 - `19d7a5f4 `_ - 2017-05-22 - xavier dupré - update build location of jenkins * - 1903 - `74714531 `_ - 2017-05-22 - xavier dupré - fix jenkins automation * - 1902 - `73bae025 `_ - 2017-05-22 - xavier dupré - update jenkins_build * - 1901 - `fa2a15b3 `_ - 2017-05-22 - xavier dupré - improve jenkins build * - 1900 - `346ffc0e `_ - 2017-05-22 - xavier dupré - update __init__.py * - 1899 - `ab46fd82 `_ - 2017-05-21 - xavier dupré - remove deprecated parameter (notebook) * - 1898 - `0e0c4154 `_ - 2017-05-21 - xavier dupré - fix a bug in helpgen * - 1896 - `7008f5f1 `_ - 2017-05-21 - xavier dupré - on the road to sphinx 1.6.1 * - 1895 - `71b81632 `_ - 2017-05-17 - xavier dupré - retrieve a change for Sphinx 1.5.6 * - 1894 - `d4402101 `_ - 2017-05-17 - xavier dupré - force the use of sphinx 1.5.6 * - 1893 - `fc06c036 `_ - 2017-05-17 - xavier dupré - update automated build * - 1892 - `13d1399e `_ - 2017-05-17 - xavier dupré - ix --> iloc, fix for the automated generation * - 1891 - `46556f61 `_ - 2017-05-17 - xavier dupré - enable disabled test * - 1890 - `3274932f `_ - 2017-05-17 - xavier dupré - fix remaining issues with the update to sphinx 1.6.1 * - 1889 - `54fbabea `_ - 2017-05-16 - xavier dupré - upgrade to sphinnx 1.6.1 * - 1888 - `b89de83a `_ - 2017-05-14 - xavier dupré - fix unit test * - 1887 - `126b1fbe `_ - 2017-05-14 - xavier dupré - better logging of internal references * - 1886 - `8eb8c9c9 `_ - 2017-05-12 - xavier dupré - update function remove_extra_spaces_and_pep8 to handle strings * - 1885 - `7fefaae6 `_ - 2017-05-08 - xavier dupré - update license * - 1884 - `6345e57f `_ - 2017-05-08 - xavier dupré - update setup.py * - 1883 - `981807c9 `_ - 2017-05-08 - xavier dupré - remove function based on tkinter, move them on tkinterquickhelper * - 1881 - `d37928dd `_ - 2017-05-01 - xavier dupré - add method to_python to the class running notebook, IPython 6.0 now fails the conversion of a notebook when there is an IndentationError * - 1879 - `d6953b06 `_ - 2017-04-27 - xavier dupré - typo * - 1878 - `b7204568 `_ - 2017-04-27 - xavier dupré - fix for Python 3.6 * - 1877 - `daf2182f `_ - 2017-04-27 - xavier dupré - fix nonlocal in Python 3.6 * - 1876 - `c066d40f `_ - 2017-04-27 - xavier dupré - blog post and documentation * - 1875 - `4e9714b2 `_ - 2017-04-25 - xavier dupré - more tests about jenkins * - 1874 - `af1786bb `_ - 2017-04-25 - xavier dupré - update jenkins job * - 1873 - `f4f1c4ef `_ - 2017-04-25 - xavier dupré - update local jenkins for Python 2.7 * - 1872 - `a3eddd38 `_ - 2017-04-25 - xavier dupré - fix previous commit * - 1871 - `260cfa39 `_ - 2017-04-25 - xavier dupré - resolve previous modifications * - 1870 - `f308847f `_ - 2017-04-25 - xavier dupré - minor modification for python 2.7 * - 1869 - `8f7af546 `_ - 2017-04-24 - xavier dupré - update setup and script * - 1868 - `cbc25057 `_ - 2017-04-22 - xavier dupré - documentation configuration * - 1866 - `15717dfe `_ - 2017-04-21 - xavier dupré - update replacement character for git repo * - 1865 - `771cda91 `_ - 2017-04-19 - xavier dupré - pep8 * - 1864 - `5dd51967 `_ - 2017-04-19 - xavier dupré - update search for pandoc * - 1862 - `77848d55 `_ - 2017-04-17 - xavier dupré - propagate parameter nblinks * - 1861 - `1c6adf2b `_ - 2017-04-17 - xavier dupré - add the possibility to add reference to the documentation from a notebook * - 1860 - `208c55c6 `_ - 2017-04-16 - xavier dupré - first fix for references within notebooks * - 1859 - `428eb76e `_ - 2017-04-15 - xavier dupré - fix jenkins setup * - 1858 - `b851799f `_ - 2017-04-15 - xavier dupré - update automated scripts * - 1857 - `ff7f43a2 `_ - 2017-04-05 - xavier dupré - less display when syncing * - 1856 - `bbe9b76e `_ - 2017-04-05 - xavier dupré - update logging function to handle more weird characters * - 1855 - `ee93b9c5 `_ - 2017-03-25 - xavier dupré - less logging * - 1854 - `2806e471 `_ - 2017-03-20 - xavier dupré - more logging * - 1852 - `a199c6a9 `_ - 2017-03-19 - xavier dupré - documentation and small fixes for benchmarks * - 1851 - `e2998e23 `_ - 2017-03-19 - xavier dupré - fix documentation * - 1850 - `c2bfe998 `_ - 2017-03-19 - xavier dupré - pep8 * - 1849 - `9ef44a6c `_ - 2017-03-19 - xavier dupré - pep8 * - 1848 - `f96f7c23 `_ - 2017-03-19 - xavier dupré - modification to the benchmark class + small style issues * - 1847 - `006b7a09 `_ - 2017-03-18 - xavier dupré - catch exception and transform them into warnings * - 1846 - `df8fc4b2 `_ - 2017-03-18 - xavier dupré - update requirements * - 1845 - `d48317fc `_ - 2017-03-18 - xavier dupré - update configuration * - 1844 - `bef13ed0 `_ - 2017-03-15 - xavier dupré - update style * - 1843 - `e63dbffe `_ - 2017-03-13 - xavier dupré - update custom_log with parent log * - 1842 - `69a74ca6 `_ - 2017-03-12 - xavier dupré - update default conf for helpgen, deal with application in notebook (jsgrid, ipywidget) * - 1841 - `de2e0477 `_ - 2017-03-12 - xavier dupré - pep8 * - 1840 - `bae86c2b `_ - 2017-03-12 - xavier dupré - fix an issue while converting a notebook * - 1839 - `eba47ba0 `_ - 2017-03-11 - xavier dupré - update python * - 1838 - `e1216fab `_ - 2017-03-10 - xavier dupré - add unit test * - 1837 - `edf060b3 `_ - 2017-03-09 - xavier dupré - modification to deal with multiple datasets * - 1836 - `de4ee50a `_ - 2017-03-06 - xavier dupré - a few fixes * - 1835 - `0578ca79 `_ - 2017-03-05 - xavier dupré - update rst template for benchmark * - 1834 - `9c16281a `_ - 2017-03-04 - xavier dupré - fix unit test failing to random * - 1833 - `dc5bac3b `_ - 2017-03-04 - xavier dupré - allow the possibility to force running one step in the benchmark * - 1832 - `4f5d9dd2 `_ - 2017-03-04 - xavier dupré - add description and tags * - 1831 - `78154c5c `_ - 2017-03-04 - xavier dupré - add cache_file options for the benchmark * - 1830 - `c0f85d6f `_ - 2017-03-04 - xavier dupré - fix relative path for images in benchmark class * - 1829 - `9f9aac0b `_ - 2017-03-04 - xavier dupré - update code for benchmark * - 1828 - `cbf06425 `_ - 2017-03-03 - xavier dupré - more flexible when checking rst pep8 * - 1827 - `bdf187b2 `_ - 2017-03-03 - xavier dupré - improve templates for benchmark * - 1826 - `31cfa0cf `_ - 2017-03-03 - xavier dupré - fix issue in unit tests * - 1825 - `945a3123 `_ - 2017-03-03 - xavier dupré - pep8 + style * - 1824 - `405b0161 `_ - 2017-03-03 - xavier dupré - some code to help benchmarking * - 1823 - `96dd0039 `_ - 2017-03-02 - xavier dupré - more logging * - 1822 - `70a05e51 `_ - 2017-02-28 - xavier dupré - better error messages * - 1821 - `8328316a `_ - 2017-02-28 - xavier dupré - a few fixes for latex and less display * - 1820 - `26fa707a `_ - 2017-02-27 - xavier dupré - minor fixes about automation * - 1819 - `8b326b1b `_ - 2017-02-26 - xavier dupré - remove a couple of warnings * - 1818 - `abb83fea `_ - 2017-02-26 - xavier dupré - update unit test to get more logging * - 1817 - `61255f67 `_ - 2017-02-26 - xavier dupré - fix for jenkins job and python 2.7 * - 1816 - `487be87d `_ - 2017-02-25 - xavier dupré - pep8 * - 1815 - `4cee4913 `_ - 2017-02-25 - xavier dupré - ftp transfer: bypass utf-8 encoding checking when the extension is ``.rst.txt``. * - 1814 - `19b65beb `_ - 2017-02-23 - xavier dupré - move scripts * - 1812 - `a9f31380 `_ - 2017-02-23 - xavier dupré - fix string and buildn, try for tkinter * - 1811 - `3fbf19b6 `_ - 2017-02-23 - xavier dupré - add a mode to gzip a text file * - 1810 - `bf3c8da4 `_ - 2017-02-22 - xavier dupré - more cautious when using matplotlib to unit test something * - 1809 - `de505984 `_ - 2017-02-18 - xavier dupré - fix unit test * - 1808 - `022b8367 `_ - 2017-02-17 - xavier dupré - add another parameter for conda * - 1807 - `a4e06838 `_ - 2017-02-17 - xavier dupré - udpate for conda and winpython * - 1806 - `ec3e9078 `_ - 2017-02-17 - xavier dupré - update jenkins anaconda * - 1805 - `7b8ec62a `_ - 2017-02-16 - xavier dupré - fix unit test * - 1804 - `9bb94ab6 `_ - 2017-02-16 - xavier dupré - update jenkins winpython * - 1803 - `12ed3628 `_ - 2017-02-16 - xavier dupré - fix a probably wrong import with Anaconda only * - 1802 - `6cbe6ba8 `_ - 2017-02-12 - xavier dupré - add warning to the list * - 1801 - `1c76756c `_ - 2017-02-12 - xavier dupré - more logging with nbexample-gallery * - 1800 - `9d050981 `_ - 2017-02-12 - xavier dupré - better error message * - 1799 - `97ab294c `_ - 2017-02-12 - xavier dupré - travis * - 1798 - `55a6911d `_ - 2017-02-12 - xavier dupré - fix for python 2.7 * - 1797 - `9df90d64 `_ - 2017-02-11 - xavier dupré - update appveyor badges * - 1796 - `91626540 `_ - 2017-02-02 - xavier dupré - fix an infinite loop when setting up jenkins * - 1795 - `e00c89e5 `_ - 2017-01-31 - xavier dupré - pep8 * - 1794 - `7e84d251 `_ - 2017-01-31 - xavier dupré - add better logs * - 1793 - `054597a0 `_ - 2017-01-24 - xavier dupré - abspath * - 1792 - `7be967dc `_ - 2017-01-22 - xavier dupré - small fix for ftp_transfer * - 1791 - `cc8ecf33 `_ - 2017-01-22 - xavier dupré - add detaild_log to execute_notebook_list * - 1790 - `9ad45519 `_ - 2017-01-22 - xavier dupré - add class CustomLog + detailed_log when running a notebook * - 1789 - `09f13be9 `_ - 2017-01-20 - xavier dupré - improve a warning * - 1788 - `6016a9c1 `_ - 2017-01-20 - xavier dupré - increase the number of options considered for a jenkins job * - 1787 - `4c52650d `_ - 2017-01-18 - xavier dupré - fx a bug with schedule and jenkins * - 1786 - `264fb18e `_ - 2017-01-16 - xavier dupré - update unit test * - 1785 - `e2fdcbdd `_ - 2017-01-14 - xavier dupré - fix pep8 * - 1784 - `d7bfcfdc `_ - 2017-01-14 - xavier dupré - better error message * - 1783 - `01999f7a `_ - 2017-01-14 - xavier dupré - pep8 + better error messages * - 1782 - `2153de8a `_ - 2017-01-14 - xavier dupré - fix an issue in ftp_transfer.py * - 1781 - `d3544220 `_ - 2017-01-14 - xavier dupré - fix pep8, add some code to clean_space.bat, update exclude_pattern in default_conf.py * - 1780 - `8c3116a9 `_ - 2017-01-14 - xavier dupré - disable one part when creating the documentation * - 1779 - `3d79181c `_ - 2017-01-14 - xavier dupré - better error messages when transferring the files through FTP * - 1778 - `a9d1dac7 `_ - 2017-01-12 - xavier dupré - fix issue with type error * - 1777 - `33bb786f `_ - 2017-01-11 - xavier dupré - pep8 + documentation * - 1776 - `4cabf31e `_ - 2017-01-11 - xavier dupré - change the number of allowed exceptions * - 1775 - `a64b21ad `_ - 2017-01-11 - xavier dupré - fix for bokeh and Python 3.6 + documentation + disable one unit test for Python 2.7 * - 1774 - `118b5001 `_ - 2017-01-11 - xavier dupré - fix a bug introduced in a previous commit * - 1773 - `3e07c86a `_ - 2017-01-11 - xavier dupré - support CMDPY and others options * - 1772 - `a0d8d7e9 `_ - 2017-01-10 - xavier dupré - update jenkisn setup * - 1769 - `60a930eb `_ - 2017-01-08 - xavier dupré - pep8 * - 1768 - `4b86153f `_ - 2017-01-08 - xavier dupré - add parameter force_allow when publishing files * - 1767 - `6aef927e `_ - 2017-01-07 - xavier dupré - update log * - 1766 - `abc2bf3a `_ - 2017-01-07 - xavier dupré - remove two warnings * - 1765 - `68ea9969 `_ - 2017-01-07 - xavier dupré - add more logs when generating the documentation * - 1764 - `3aa0fee5 `_ - 2017-01-06 - xavier dupré - fix yaml unit test * - 1763 - `2ebd547f `_ - 2017-01-06 - xavier dupré - update local jenkins * - 1762 - `5882ab60 `_ - 2017-01-03 - xavier dupré - update requirements * - 1761 - `8e245ab6 `_ - 2017-01-03 - xavier dupré - build documentation for 3.6 * - 1760 - `0c55330c `_ - 2017-01-03 - xavier dupré - update requirements * - 1759 - `220c2a90 `_ - 2017-01-03 - xavier dupré - switch from an error to a warning with pandoc * - 1758 - `169be6a6 `_ - 2017-01-02 - xavier dupré - fix failing unit test * - 1757 - `46f73cb9 `_ - 2017-01-02 - xavier dupré - update build for first build with jenkins * - 1756 - `f8c4b341 `_ - 2017-01-02 - xavier dupré - fix unit test, creates a directory * - 1755 - `6f6a9e75 `_ - 2017-01-02 - xavier dupré - move script to bin folder * - 1754 - `77ce4db2 `_ - 2017-01-01 - xavier dupré - fix error message * - 1753 - `a2b03a6b `_ - 2017-01-01 - xavier dupré - update error message * - 1752 - `84244dc1 `_ - 2017-01-01 - xavier dupré - update error message * - 1751 - `ce652afa `_ - 2017-01-01 - xavier dupré - delayed import * - 1750 - `26a26dec `_ - 2017-01-01 - xavier dupré - fix the module when numpy is installed and compiled * - 1749 - `a8928a66 `_ - 2017-01-01 - xavier dupré - blog post * - 1748 - `ce10147a `_ - 2017-01-01 - xavier dupré - update for python 2.7 * - 1747 - `7e231de6 `_ - 2017-01-01 - xavier dupré - fix for python 3.6 * - 1746 - `476cee42 `_ - 2017-01-01 - xavier dupré - update unit test for Python 3.6 and jenkins * - 1745 - `23d13793 `_ - 2017-01-01 - xavier dupré - fix for python 2.7 * - 1744 - `f90efb10 `_ - 2017-01-01 - xavier dupré - update ci for python 3.6 * - 1743 - `2260a8f0 `_ - 2017-01-01 - xavier dupré - fix an issue when cleaning rst * - 1742 - `71d334c0 `_ - 2016-12-31 - xavier dupré - fix issue in math numbering * - 1741 - `d4db6507 `_ - 2016-12-31 - xavier dupré - first draft to expand a number for issue #43 * - 1740 - `ab9a13cd `_ - 2016-12-31 - xavier dupré - reorder notebook based on titles, issue #44 * - 1739 - `cb558f34 `_ - 2016-12-30 - xavier dupré - increase unit test coverage * - 1738 - `c7c65d29 `_ - 2016-12-30 - xavier dupré - fix a bug in notebook gallery + logging * - 1737 - `699dbfd0 `_ - 2016-12-30 - xavier dupré - add option contents for mathdef extension * - 1736 - `2ce6c76e `_ - 2016-12-29 - xavier dupré - fix global variable in sphinx_runpython_extension * - 1735 - `c992663a `_ - 2016-12-29 - xavier dupré - fix a bug in sphinx_runpython_extension about domain name * - 1734 - `0162a55d `_ - 2016-12-29 - xavier dupré - update regular expression for notebook description * - 1733 - `e92484ee `_ - 2016-12-29 - xavier dupré - add an exception to catch mistake when extracting decription from notebooks * - 1732 - `904c4808 `_ - 2016-12-28 - xavier dupré - remove bad rst syntax * - 1731 - `1e31beaf `_ - 2016-12-28 - xavier dupré - add cleaning notebooks to the cleaning process + one fix for documentation * - 1730 - `5cd4b3cd `_ - 2016-12-28 - xavier dupré - clean rst files too along with python files * - 1729 - `c62389da `_ - 2016-12-28 - xavier dupré - documentation + add parameter exception to runpython * - 1728 - `d79d686f `_ - 2016-12-27 - xavier dupré - fix label for blogs * - 1727 - `e0ecbb79 `_ - 2016-12-26 - xavier dupré - fix unit test * - 1726 - `3215adea `_ - 2016-12-26 - xavier dupré - update notebook gallery * - 1724 - `dc5fe531 `_ - 2016-12-25 - xavier dupré - remove unnecessary exception * - 1723 - `12a046f3 `_ - 2016-12-25 - xavier dupré - fix two bugs with multiple documentation and multiple levels of notebooks * - 1722 - `cd291bde `_ - 2016-12-24 - xavier dupré - add logs * - 1721 - `9374abb8 `_ - 2016-12-24 - xavier dupré - revert a label in shinx * - 1720 - `5b0b89ab `_ - 2016-12-24 - xavier dupré - quick fix when a notebook cell does not contains a string * - 1719 - `a6406626 `_ - 2016-12-24 - xavier dupré - improve notebook gallery + switch book is True by default for all documentation * - 1718 - `65a7e587 `_ - 2016-12-24 - xavier dupré - fix empty image * - 1717 - `3b4fa6ba `_ - 2016-12-24 - xavier dupré - update dependency for ci * - 1716 - `2b4af560 `_ - 2016-12-24 - xavier dupré - remove dependency on sphinx_nbexamples * - 1715 - `36017314 `_ - 2016-12-22 - xavier dupré - pep8 * - 1714 - `06f1d637 `_ - 2016-12-22 - xavier dupré - a little bit of refactoring documentation generation * - 1713 - `a1a6570a `_ - 2016-12-21 - xavier dupré - remove a last bug introduced to test * - 1712 - `d10a131c `_ - 2016-12-20 - xavier dupré - fixes for latex * - 1711 - `2a4e2aa6 `_ - 2016-12-20 - xavier dupré - add the possibility to tweak the full latex file before compiling it * - 1710 - `01ba801a `_ - 2016-12-20 - xavier dupré - update notebook * - 1709 - `763ed979 `_ - 2016-12-20 - xavier dupré - update notebooks * - 1708 - `1a36c571 `_ - 2016-12-20 - xavier dupré - better error message for run_cmd * - 1707 - `57022189 `_ - 2016-12-20 - xavier dupré - pep8 * - 1706 - `07eda349 `_ - 2016-12-20 - xavier dupré - add support for notebooks gallery, update default configuration * - 1705 - `0f5dcb40 `_ - 2016-12-19 - xavier dupré - add sphinx-gallery extensions only when needed * - 1704 - `da77afa4 `_ - 2016-12-18 - xavier dupré - fix path in example * - 1703 - `87547e50 `_ - 2016-12-18 - xavier dupré - add examples for sphinx-gallery #36 * - 1702 - `ae135fc3 `_ - 2016-12-17 - xavier dupré - pep8 * - 1701 - `1a9626a5 `_ - 2016-12-17 - xavier dupré - remove some extra processing on latex * - 1700 - `d1ad1ea2 `_ - 2016-12-08 - xavier dupré - update dependency version for sphinx * - 1699 - `61c373df `_ - 2016-12-08 - xavier dupré - others fixes for Sphinx 1.5 * - 1698 - `b8221c50 `_ - 2016-12-08 - xavier dupré - update for Sphinx 1.5 * - 1697 - `1060b790 `_ - 2016-12-08 - xavier dupré - add the possbility to modify the changes or the comments * - 1696 - `80641c4a `_ - 2016-12-05 - xavier dupré - update setup.py * - 1695 - `f4c966b6 `_ - 2016-12-04 - xavier dupré - update unittests after updating yml * - 1694 - `c2080765 `_ - 2016-12-04 - xavier dupré - stop testing on python 3.4 * - 1693 - `dcd20a62 `_ - 2016-12-03 - xavier dupré - remove download badge + blog post * - 1692 - `4e2dcf9c `_ - 2016-12-02 - xavier dupré - reorder lines in conf_base.py * - 1691 - `20c389fa `_ - 2016-12-01 - xavier dupré - fix github links * - 1690 - `8b06ef9f `_ - 2016-12-01 - xavier dupré - update default conf * - 1689 - `983f7583 `_ - 2016-12-01 - xavier dupré - update default conf * - 1688 - `0a4a19f1 `_ - 2016-11-23 - xavier dupré - add the possibitlity to add a link for other git repos * - 1687 - `2af8c40e `_ - 2016-11-21 - xavier dupré - fix an issue with empty list * - 1686 - `6fdaf6a0 `_ - 2016-11-21 - xavier dupré - adding indent for automated githublink + possibility to generate custom link for githublink * - 1685 - `104bd4ae `_ - 2016-11-21 - xavier dupré - fix path for javascript * - 1684 - `f585f414 `_ - 2016-11-20 - xavier dupré - fix an issue in path for documentation generation * - 1683 - `707af95c `_ - 2016-11-20 - xavier dupré - fixes a few thing while generating the documentation * - 1682 - `497d2345 `_ - 2016-11-20 - xavier dupré - ignore githublink when options are None * - 1681 - `98b81f0b `_ - 2016-11-20 - xavier dupré - add link to github for each function and class * - 1680 - `71d73f0d `_ - 2016-11-20 - xavier dupré - github format is a link not a file * - 1679 - `2a67cd20 `_ - 2016-11-20 - xavier dupré - add link to the notebook on GitHub * - 1678 - `b014cfaa `_ - 2016-11-20 - xavier dupré - update classifiers * - 1677 - `6b0d9f3d `_ - 2016-11-20 - xavier dupré - fix githublink role * - 1676 - `29afb23a `_ - 2016-11-20 - xavier dupré - add githublink role * - 1675 - `3e9d13c4 `_ - 2016-11-19 - xavier dupré - blog post * - 1673 - `5f82b9cc `_ - 2016-11-18 - xavier dupré - add option to remove lines * - 1672 - `ee905e63 `_ - 2016-11-17 - xavier dupré - fix a bug in yaml parsing, allow strings as script instruction * - 1671 - `49220a28 `_ - 2016-11-17 - xavier dupré - add possibility to split a jenkins jobs defined with yaml in multiple parts * - 1670 - `33eadff1 `_ - 2016-11-14 - xavier dupré - disable unit test on Python 2.7 * - 1669 - `5a4def9a `_ - 2016-11-14 - xavier dupré - fix pep8 * - 1668 - `c9b11943 `_ - 2016-11-14 - xavier dupré - fixes for Python 2.7 * - 1667 - `a074a776 `_ - 2016-11-13 - xavier dupré - documentation + pep8 * - 1666 - `fecb54d7 `_ - 2016-11-13 - xavier dupré - test for travis 7.2010 * - 1665 - `590d07b4 `_ - 2016-11-13 - xavier dupré - test for travis 7.2007 * - 1664 - `cea005da `_ - 2016-11-13 - xavier dupré - explicitely starts the kernel * - 1663 - `ac32cca9 `_ - 2016-11-13 - xavier dupré - change default value for NotebookRunner(kernal=False), add extra parameters to read_json * - 1662 - `8ca69b81 `_ - 2016-11-13 - xavier dupré - better consistency with StringIO, BytesIO, Python 2 * - 1661 - `635ea8b1 `_ - 2016-11-13 - xavier dupré - test ofr travis 7.2006 * - 1660 - `8a03831e `_ - 2016-11-13 - xavier dupré - test for travis 7.2005 * - 1659 - `1f111ae7 `_ - 2016-11-13 - xavier dupré - test for travis 7.2003 * - 1658 - `8976f7b4 `_ - 2016-11-13 - xavier dupré - test for travis 7.2002 * - 1657 - `91140854 `_ - 2016-11-13 - xavier dupré - update import * - 1656 - `f97eff92 `_ - 2016-11-13 - xavier dupré - test for travis 7.2001 * - 1655 - `c08e0e54 `_ - 2016-11-13 - xavier dupré - test for travis 7.2000 * - 1654 - `59f12534 `_ - 2016-11-13 - xavier dupré - test for travis 7.1999 * - 1653 - `23af9770 `_ - 2016-11-13 - xavier dupré - test for travis 7.13 * - 1652 - `97773974 `_ - 2016-11-13 - xavier dupré - test for travis 7.12 * - 1651 - `3ff6199a `_ - 2016-11-13 - xavier dupré - test for travis 7.11 * - 1650 - `dcf6608b `_ - 2016-11-13 - xavier dupré - test for travis 7.10.2 * - 1649 - `4b932e08 `_ - 2016-11-13 - xavier dupré - test for travis 7.10 * - 1648 - `f6385eb0 `_ - 2016-11-13 - xavier dupré - test for travis 7.3 * - 1647 - `1fdc5308 `_ - 2016-11-13 - xavier dupré - test for travis 7.2 * - 1646 - `f9b75b73 `_ - 2016-11-13 - xavier dupré - test for travis 7.1 * - 1645 - `14335666 `_ - 2016-11-13 - xavier dupré - add kernel = False * - 1644 - `2c1b3385 `_ - 2016-11-13 - xavier dupré - diable runnint fr trvis * - 1643 - `35f1061e `_ - 2016-11-13 - xavier dupré - fix setup.py * - 1642 - `d7f5bc03 `_ - 2016-11-13 - xavier dupré - test systme exit * - 1641 - `5621effa `_ - 2016-11-13 - xavier dupré - test for travis 6.3 * - 1640 - `9f2376df `_ - 2016-11-12 - xavier dupré - tesdt for travis 6.2 * - 1639 - `9f364975 `_ - 2016-11-12 - xavier dupré - test for travis 6.1 * - 1638 - `34ea7620 `_ - 2016-11-12 - xavier dupré - move an import to reduce dependency on numpy * - 1637 - `83db5032 `_ - 2016-11-12 - xavier dupré - test for travis 5.24 * - 1636 - `896bbb66 `_ - 2016-11-12 - xavier dupré - test for travis 5.23 * - 1635 - `2213d23e `_ - 2016-11-12 - xavier dupré - test for travis 5.22 * - 1634 - `5ffb31c8 `_ - 2016-11-12 - xavier dupré - test for travis 5.21 * - 1633 - `daca5908 `_ - 2016-11-12 - xavier dupré - test for travis 5.20 * - 1632 - `6f42cf49 `_ - 2016-11-12 - xavier dupré - test for travis 5.19 * - 1631 - `b672a775 `_ - 2016-11-12 - xavier dupré - test for travis 5.18 * - 1630 - `0a8e515d `_ - 2016-11-12 - xavier dupré - test for travais 5.17 * - 1629 - `de541159 `_ - 2016-11-12 - xavier dupré - test for travis 5.16 * - 1628 - `3d769257 `_ - 2016-11-12 - xavier dupré - test for travis 5.15 * - 1627 - `179c81bd `_ - 2016-11-12 - xavier dupré - test for travis 5.14 * - 1626 - `c3a4dc5a `_ - 2016-11-12 - xavier dupré - test for travis 5.13 * - 1625 - `daaae8d2 `_ - 2016-11-12 - xavier dupré - test for travis 5.12 * - 1624 - `d2ac86ec `_ - 2016-11-12 - xavier dupré - test for travis 5.11 * - 1623 - `c4df24b4 `_ - 2016-11-12 - xavier dupré - test for travis 5.10 * - 1622 - `ce10588d `_ - 2016-11-12 - xavier dupré - test for travis 5.9 * - 1621 - `8f036b88 `_ - 2016-11-12 - xavier dupré - test for travis 5.8 * - 1620 - `eaf033a6 `_ - 2016-11-12 - xavier dupré - test for travis 5.7 * - 1619 - `c17b0e54 `_ - 2016-11-12 - xavier dupré - test for travis 5.6 * - 1618 - `a7500713 `_ - 2016-11-12 - xavier dupré - test for travis 5.5 * - 1617 - `279d3b0d `_ - 2016-11-12 - xavier dupré - test for travis 5.3 * - 1616 - `67058af2 `_ - 2016-11-12 - xavier dupré - test for travis 5.2 * - 1615 - `0c8a3957 `_ - 2016-11-12 - xavier dupré - test for travis 5.1 * - 1614 - `afe39057 `_ - 2016-11-12 - xavier dupré - test for travis 5 * - 1613 - `55e60367 `_ - 2016-11-12 - xavier dupré - test for travis 4 * - 1612 - `d4fb3402 `_ - 2016-11-12 - xavier dupré - new test for travis 3 * - 1611 - `6244cd9a `_ - 2016-11-12 - xavier dupré - test for travis 3 * - 1610 - `6ec89d61 `_ - 2016-11-12 - xavier dupré - test for travis * - 1609 - `ef448ef7 `_ - 2016-11-12 - xavier dupré - test for travis * - 1608 - `10702dc3 `_ - 2016-11-12 - xavier dupré - fix bug about duration for unit test * - 1607 - `1efaa365 `_ - 2016-11-12 - xavier dupré - test for travis * - 1606 - `0840ddc0 `_ - 2016-11-12 - xavier dupré - test for travis * - 1605 - `ca97172a `_ - 2016-11-12 - xavier dupré - test for travis * - 1604 - `e5c54902 `_ - 2016-11-11 - xavier dupré - disable exception * - 1603 - `c9412eb1 `_ - 2016-11-11 - xavier dupré - disable coverage measure (check) * - 1602 - `62d68ec6 `_ - 2016-11-11 - xavier dupré - update for travis * - 1601 - `48d52640 `_ - 2016-11-11 - xavier dupré - more logging message when running unit test * - 1600 - `72603ac3 `_ - 2016-11-11 - xavier dupré - make is_url_string more robust * - 1599 - `b27be231 `_ - 2016-11-11 - xavier dupré - better error message * - 1598 - `c3948d52 `_ - 2016-11-11 - xavier dupré - fix missing import, update behavior of a unit test on travis and appveyor * - 1597 - `3198dd32 `_ - 2016-11-11 - xavier dupré - remove the possibility of an infinite loop * - 1596 - `39482e42 `_ - 2016-11-11 - xavier dupré - update requirements for travis * - 1595 - `1a777b3c `_ - 2016-11-11 - xavier dupré - fix a unit test about notebooks * - 1594 - `3d2f99c7 `_ - 2016-11-11 - xavier dupré - fix a path in a unit test * - 1593 - `e9067e1a `_ - 2016-11-11 - xavier dupré - pep8 * - 1592 - `b2fda220 `_ - 2016-11-11 - xavier dupré - better default values * - 1591 - `c306fd05 `_ - 2016-11-10 - xavier dupré - unit test + better error message * - 1590 - `96dc4483 `_ - 2016-11-09 - dupre - fix unit test due to change in yml * - 1589 - `7d876325 `_ - 2016-11-09 - dupre - move docx compilation for a notebook into SKIP * - 1588 - `e32d002b `_ - 2016-11-08 - dupre - pep8 * - 1587 - `ada06bcd `_ - 2016-11-08 - dupre - add unit tests * - 1586 - `1fbee5d0 `_ - 2016-11-08 - dupre - add parameter disable schedule * - 1585 - `29ed7862 `_ - 2016-11-06 - dupre - fix missing parameter exc * - 1584 - `7e9ca53d `_ - 2016-11-05 - dupre - pep8 * - 1583 - `b66a2324 `_ - 2016-11-01 - dupre - add parameter exc to nb2html * - 1582 - `d7311c3f `_ - 2016-11-01 - dupre - add parameter exc to force the conversion of a notebook * - 1581 - `3f2af41c `_ - 2016-11-01 - dupre - add contents on index pages (automated documentation) * - 1580 - `57f79362 `_ - 2016-11-01 - dupre - add extension jpeg * - 1579 - `e0ead1da `_ - 2016-10-30 - dupre - add jpg extension for the documentation generation * - 1578 - `12277981 `_ - 2016-10-30 - dupre - add a warning to filter out by default * - 1577 - `a65710c6 `_ - 2016-10-30 - dupre - move function default_filter_warning * - 1576 - `005453eb `_ - 2016-10-28 - dupre - update size for helpgen * - 1575 - `06d696e8 `_ - 2016-10-27 - dupre - add author in tables of changes (documentation) * - 1573 - `6586c24f `_ - 2016-10-25 - dupre - fix documentation * - 1572 - `bb93cb9b `_ - 2016-10-25 - dupre - pep8 * - 1571 - `0c66b3ab `_ - 2016-10-25 - dupre - fix unit test + documentation * - 1570 - `8418407e `_ - 2016-10-25 - dupre - fix regular expressions in the setup + how to contribute * - 1569 - `cf22c374 `_ - 2016-10-22 - dupre - fixes for Python 2.7 * - 1568 - `aa8bbb1c `_ - 2016-10-22 - dupre - improve a bug in get_prefix * - 1567 - `5453efd9 `_ - 2016-10-22 - dupre - avoid uploading with a wrong subversion number * - 1566 - `1403c3ae `_ - 2016-10-22 - dupre - removes use of build_script.bat when generating jenkins jobs * - 1565 - `fe37d40c `_ - 2016-10-16 - dupre - add mails to yaml * - 1564 - `6c203529 `_ - 2016-10-16 - dupre - update jenkins with mails * - 1563 - `f230651c `_ - 2016-10-10 - dupre - blog post * - 1562 - `ac143238 `_ - 2016-10-09 - dupre - fix unit tests * - 1561 - `069d976a `_ - 2016-10-09 - dupre - add custom preprocessor to allow raww output for notebooks * - 1560 - `3e5d8127 `_ - 2016-10-01 - dupre - documentation and fix bug , avoid havign same targetid * - 1559 - `220cae8d `_ - 2016-09-30 - dupre - catch an exception with a better message * - 1558 - `b2187732 `_ - 2016-09-29 - dupre - add a javascript dependency when generating when generating the documentation, fix NbImage * - 1556 - `e19db8e8 `_ - 2016-09-27 - dupre - fix unit test * - 1555 - `1960343d `_ - 2016-09-27 - dupre - update local jenkins * - 1554 - `6b21decd `_ - 2016-09-25 - dupre - remove unit test for functionalities which moves to jyquickhelper * - 1553 - `8d34d42d `_ - 2016-09-25 - dupre - delay import * - 1552 - `9b6da6de `_ - 2016-09-25 - dupre - pep8 * - 1551 - `3e88e4b9 `_ - 2016-09-25 - dupre - update notebook menu * - 1550 - `8baf90ab `_ - 2016-09-25 - dupre - fix jenkins unit test * - 1549 - `7068dd3f `_ - 2016-09-25 - dupre - update import path * - 1548 - `a38f1412 `_ - 2016-09-25 - dupre - move functions to jyquickhelper * - 1547 - `07eb610e `_ - 2016-09-24 - dupre - fixes for python 2.7 * - 1546 - `6f2b0475 `_ - 2016-09-24 - dupre - fixes for Python 2.7 * - 1545 - `908bb6d2 `_ - 2016-09-23 - dupre - update appveyor * - 1544 - `f049715e `_ - 2016-09-23 - dupre - documentation, better unit test * - 1543 - `99c25c04 `_ - 2016-09-23 - dupre - fix an issue with 7z * - 1542 - `f87d303b `_ - 2016-09-22 - dupre - fix a bug in process_notebook * - 1541 - `fd510c6e `_ - 2016-09-21 - dupre - fix keyring * - 1540 - `e21de13e `_ - 2016-09-21 - dupre - fix appveyor +machinename * - 1539 - `ffd7acd0 `_ - 2016-09-21 - dupre - update requirements * - 1538 - `9089aa6e `_ - 2016-09-21 - dupre - add unit test for FTP * - 1537 - `c7ec2d28 `_ - 2016-09-19 - dupre - disable test on travis * - 1536 - `6809c19c `_ - 2016-09-19 - dupre - add a function to convert from latex to rst with pandoc * - 1535 - `63b54945 `_ - 2016-09-18 - dupre - switch to version 1.5 * - 1534 - `ed90d602 `_ - 2016-09-15 - dupre - fix issue when clean spaces * - 1533 - `22b24184 `_ - 2016-09-10 - dupre - pep8 * - 1532 - `889b2ce1 `_ - 2016-09-10 - dupre - update print and run_cmd * - 1531 - `66ba0718 `_ - 2016-09-10 - dupre - update unit test for travis * - 1530 - `11588d51 `_ - 2016-09-10 - dupre - update default value for linux * - 1529 - `d2beae04 `_ - 2016-09-09 - dupre - fix missing key in ci_helper * - 1528 - `806da757 `_ - 2016-09-09 - dupre - add USER with USERNAME * - 1527 - `66e14eb8 `_ - 2016-09-08 - dupre - fix a bug in the notebook page generation * - 1526 - `481beb15 `_ - 2016-09-07 - dupre - fix for Python 2.7 * - 1525 - `2e8e8efa `_ - 2016-09-07 - dupre - fix for python 2.7 * - 1524 - `fa34e313 `_ - 2016-09-07 - dupre - fix for python 2.7 * - 1523 - `d61c1311 `_ - 2016-09-07 - dupre - fix for Python 2.7 * - 1522 - `d3eabd08 `_ - 2016-09-07 - dupre - fix for python 2.7 + pep8 * - 1521 - `29ac65fd `_ - 2016-09-07 - dupre - fix for python 2.7 * - 1520 - `9c4ddba5 `_ - 2016-09-07 - dupre - catch more exceptions and display more explicit messages * - 1519 - `24ead4ff `_ - 2016-09-06 - dupre - fix unit test * - 1518 - `e306390c `_ - 2016-09-06 - dupre - update function cleaning the repository * - 1517 - `99ee1046 `_ - 2016-09-05 - dupre - pep8 * - 1516 - `acc79d27 `_ - 2016-09-05 - dupre - fix a misspelling + a bug * - 1515 - `0c6b4440 `_ - 2016-09-05 - dupre - misspellings * - 1514 - `d66c2a42 `_ - 2016-09-04 - dupre - catches an exception and provides more information * - 1513 - `33e46418 `_ - 2016-09-04 - dupre - change command line format when calling sphinx * - 1512 - `ea8b4a60 `_ - 2016-09-04 - dupre - add a warning to remove in the default list * - 1511 - `9d6d39c5 `_ - 2016-09-03 - dupre - fix unit test * - 1510 - `06c911f5 `_ - 2016-09-03 - dupre - update local jenkins * - 1508 - `5ad4c779 `_ - 2016-09-03 - dupre - blog * - 1507 - `c54f5af3 `_ - 2016-09-03 - dupre - update to ipykernel * - 1506 - `a69d5b9c `_ - 2016-09-02 - dupre - apply regulat expression on the filename without folder (unittests) * - 1505 - `b652f781 `_ - 2016-09-02 - dupre - fix issues in run_base_venv * - 1504 - `627623df `_ - 2016-09-02 - dupre - change meaning of parameter valid * - 1503 - `22cad15d `_ - 2016-09-02 - dupre - update on unit test * - 1502 - `337546a3 `_ - 2016-09-01 - dupre - capture standard output for unit test in text file * - 1501 - `011d91c2 `_ - 2016-09-01 - dupre - fix bug for travis * - 1500 - `b6032023 `_ - 2016-09-01 - dupre - first fix for unit test on appveyor * - 1499 - `43a2513a `_ - 2016-08-31 - xavier dupré - fix issues when detecting virtual environment * - 1498 - `8f87619e `_ - 2016-08-31 - dupre - add timeout in jenkins job * - 1497 - `547de87c `_ - 2016-08-31 - dupre - add helper to run script outside a virtual environment * - 1496 - `450e52e6 `_ - 2016-08-31 - dupre - fix documentation * - 1495 - `d778443a `_ - 2016-08-30 - dupre - fix an issue with a parameter * - 1494 - `5cfee253 `_ - 2016-08-30 - dupre - add better handling of fLOG function for help generation * - 1493 - `93c78ebd `_ - 2016-08-30 - dupre - remove epub from the list of default values * - 1492 - `c9308b5b `_ - 2016-08-30 - dupre - fix unit test * - 1491 - `98a020b1 `_ - 2016-08-29 - dupre - update local jenkins + better unit test * - 1490 - `8160bc79 `_ - 2016-08-29 - dupre - remove pdf generation, documentation * - 1489 - `23163827 `_ - 2016-08-29 - dupre - quick update to check something * - 1488 - `1048f757 `_ - 2016-08-29 - dupre - fix issues with latex, run_cmd and documentation * - 1487 - `3d5ef23e `_ - 2016-08-29 - dupre - syntax error * - 1486 - `09e9943d `_ - 2016-08-29 - dupre - more logs * - 1485 - `a612d53e `_ - 2016-08-28 - dupre - update run_cmds * - 1484 - `fe342c32 `_ - 2016-08-28 - dupre - add a unit test which does not work * - 1483 - `266e7cd3 `_ - 2016-08-28 - dupre - small changes, no impact * - 1482 - `42eab280 `_ - 2016-08-28 - dupre - update default value * - 1481 - `b8ef23ea `_ - 2016-08-28 - dupre - add function to check the list of setup commands * - 1480 - `07c24d39 `_ - 2016-08-28 - dupre - update unit test for appveyor * - 1479 - `7b171f1d `_ - 2016-08-28 - dupre - disable one unit test on appveyor * - 1478 - `215b81e8 `_ - 2016-08-27 - dupre - disable unit test for Python 2.7 * - 1477 - `5749f677 `_ - 2016-08-27 - dupre - disable unit test for Python 2.7 * - 1476 - `bf31b6f0 `_ - 2016-08-27 - dupre - disalbe unit test for Python 2.7 * - 1475 - `297d7484 `_ - 2016-08-27 - dupre - update for Python 2.7 again * - 1474 - `ca096387 `_ - 2016-08-27 - dupre - fixes for Python 2.7 * - 1473 - `e6f9999a `_ - 2016-08-27 - dupre - add yml to the list of files to copy for Python 2.7 * - 1472 - `2c54ede1 `_ - 2016-08-27 - dupre - update for Python 2.7 * - 1471 - `84686a15 `_ - 2016-08-27 - dupre - fix issues with documentation test * - 1470 - `55eebac8 `_ - 2016-08-27 - dupre - fixes for cop3to2 + documentation * - 1469 - `b4e3ae62 `_ - 2016-08-27 - dupre - fixes for an extra layer for the documentation * - 1468 - `226eb4a3 `_ - 2016-08-27 - dupre - skip conversion for files in a virtual environment * - 1467 - `c94becbc `_ - 2016-08-27 - dupre - fixes for Python 2.7 again * - 1466 - `6c2cb2d0 `_ - 2016-08-27 - dupre - a few update for Python 2.7 again * - 1465 - `7fda4514 `_ - 2016-08-27 - dupre - fix for Python 2.7 * - 1464 - `3e33ad2a `_ - 2016-08-27 - dupre - update for Python 2.7 * - 1463 - `ecc3d184 `_ - 2016-08-27 - dupre - update local.jenkins * - 1462 - `3a2856af `_ - 2016-08-27 - dupre - update for Python 2.7 * - 1461 - `8a486011 `_ - 2016-08-27 - dupre - update for Python 2.7 * - 1460 - `1b42eeab `_ - 2016-08-27 - dupre - update for python 2.7 * - 1459 - `cf177168 `_ - 2016-08-27 - dupre - update unit test * - 1458 - `77d92c4d `_ - 2016-08-27 - dupre - update for python 2.7 * - 1457 - `292313fe `_ - 2016-08-27 - dupre - fix issues in late compilation * - 1456 - `6cf40d41 `_ - 2016-08-27 - dupre - update jenkins jobs, documentation comments * - 1455 - `b33173dd `_ - 2016-08-26 - dupre - update jenkins definition * - 1454 - `20ae9c1f `_ - 2016-08-26 - dupre - fix run_cmd * - 1452 - `6beaa5cb `_ - 2016-08-26 - dupre - fix a couple of unit test, jenkins build, yaml * - 1451 - `21e0bfc7 `_ - 2016-08-26 - dupre - update unit test for travis * - 1450 - `495873ff `_ - 2016-08-26 - dupre - update unit test about run_cmd, fix issues in jenkins * - 1449 - `f7693058 `_ - 2016-08-25 - dupre - update run_cmd and jenkins jobs * - 1448 - `a3e668b2 `_ - 2016-08-25 - dupre - fix local jenkins and unit test * - 1447 - `f52ac4aa `_ - 2016-08-25 - dupre - update local jenkins * - 1446 - `36c3d35d `_ - 2016-08-25 - dupre - update run_cmd to read output continuously * - 1445 - `3cc3211a `_ - 2016-08-25 - dupre - fix unit test * - 1444 - `6755c4df `_ - 2016-08-25 - dupre - fix unit test failing in a virtual environment * - 1443 - `a09914d7 `_ - 2016-08-25 - dupre - remove unnecessary code, update unit test * - 1442 - `121da76f `_ - 2016-08-24 - xavier dupré - move some import to postpone warnings * - 1441 - `81af8d1c `_ - 2016-08-24 - dupre - update unit tests * - 1440 - `fd105069 `_ - 2016-08-24 - dupre - add pyflakes back to check the code, update unit test,, update sphinx_main, more run_cmd to a separate file * - 1439 - `4aea7771 `_ - 2016-08-24 - dupre - update unit test * - 1438 - `c979f831 `_ - 2016-08-23 - dupre - update condition to publish coverage * - 1437 - `ddece5d3 `_ - 2016-08-23 - dupre - automatically delay a scheduler on jenkins if a spot is already taken * - 1436 - `89a15da5 `_ - 2016-08-23 - dupre - allow url for jenkins job based on yml * - 1435 - `a9da9342 `_ - 2016-08-23 - dupre - add subfolder for notebooks * - 1434 - `9fd2f5d7 `_ - 2016-08-23 - dupre - another try with less nbconvert command line * - 1433 - `0d75e107 `_ - 2016-08-23 - dupre - update unit tests * - 1432 - `6176568e `_ - 2016-08-23 - dupre - adding comments * - 1431 - `821bebd6 `_ - 2016-08-23 - dupre - update comment * - 1430 - `80c1fc2e `_ - 2016-08-23 - dupre - use cmd for notebooks conversion * - 1429 - `d2c19214 `_ - 2016-08-23 - dupre - fix unit tests * - 1428 - `587c049c `_ - 2016-08-22 - dupre - enable unit tests * - 1427 - `fc2403f5 `_ - 2016-08-22 - dupre - update local jenkins * - 1426 - `ff53168f `_ - 2016-08-22 - dupre - reduce the number of command line call issue #30 * - 1425 - `d1f63a5b `_ - 2016-08-22 - dupre - remove call to command lines to generate the documentation * - 1424 - `dec5e6c2 `_ - 2016-08-22 - dupre - fix bug in coverage helper * - 1423 - `0ff77b63 `_ - 2016-08-22 - dupre - fix a bug in codecov helper * - 1422 - `06bc4893 `_ - 2016-08-22 - dupre - fix a bug when calling codecov * - 1421 - `0cc6df2a `_ - 2016-08-22 - dupre - allow regular expression when running unittest * - 1420 - `4f4e1850 `_ - 2016-08-22 - dupre - change codecov call * - 1419 - `f9b87236 `_ - 2016-08-22 - dupre - fix unit test * - 1418 - `15181a5a `_ - 2016-08-21 - dupre - update unit test * - 1417 - `67cff3d3 `_ - 2016-08-21 - dupre - update yml * - 1416 - `8601ece9 `_ - 2016-08-21 - dupre - enable unit test, fix latest issues * - 1415 - `93ed8244 `_ - 2016-08-21 - xavier dupré - update script for jenkins and yml * - 1414 - `97f81ba7 `_ - 2016-08-21 - dupre - update yml script * - 1413 - `44d376d3 `_ - 2016-08-21 - dupre - give default value for project_name * - 1412 - `c65e2cdf `_ - 2016-08-21 - dupre - add environment variables * - 1411 - `c24fb38b `_ - 2016-08-21 - dupre - update notebooks * - 1410 - `5edc13aa `_ - 2016-08-20 - dupre - fix unit test * - 1409 - `f368e154 `_ - 2016-08-20 - dupre - fix unit test for travis * - 1408 - `0443a8f9 `_ - 2016-08-20 - dupre - fix unit tests * - 1407 - `b83191b7 `_ - 2016-08-20 - dupre - remove execution number from notebooks * - 1406 - `a0bb36bb `_ - 2016-08-20 - dupre - update yml process * - 1405 - `8e8db50e `_ - 2016-08-20 - dupre - update for jenkins jobs * - 1404 - `c83fab23 `_ - 2016-08-19 - dupre - disable on test on travis * - 1403 - `0f18c0a7 `_ - 2016-08-19 - dupre - fix error leven on linux * - 1402 - `3466fd5c `_ - 2016-08-19 - dupre - update script for linux * - 1401 - `b827275a `_ - 2016-08-19 - dupre - add more informative message * - 1400 - `eefb5e7e `_ - 2016-08-19 - dupre - update unit test * - 1399 - `14e3e811 `_ - 2016-08-19 - dupre - fix script for linux * - 1398 - `c8983200 `_ - 2016-08-19 - dupre - update for linux * - 1397 - `f6fd55e2 `_ - 2016-08-19 - dupre - update unit test again for travis * - 1396 - `d9d98cda `_ - 2016-08-19 - dupre - update yaml for linux * - 1395 - `c3175d8c `_ - 2016-08-19 - dupre - catch an error and raise an exception * - 1394 - `ff0813e3 `_ - 2016-08-19 - dupre - update test for yaml * - 1393 - `bdf82202 `_ - 2016-08-18 - dupre - fix unit test for yaml * - 1392 - `254d5127 `_ - 2016-08-18 - dupre - update yaml helper * - 1391 - `302a2ad2 `_ - 2016-08-18 - dupre - update for local yaml * - 1390 - `28f75055 `_ - 2016-08-17 - dupre - add notebook for differences * - 1389 - `f1678df4 `_ - 2016-08-17 - dupre - add option label as a synonym for lid for sphinx extension * - 1388 - `f725ba02 `_ - 2016-08-16 - dupre - first step for yml local build * - 1387 - `b56a3732 `_ - 2016-08-12 - dupre - update appveyor * - 1386 - `31b81319 `_ - 2016-08-12 - dupre - extends coverage of unit tests * - 1385 - `66fae917 `_ - 2016-08-09 - dupre - update build script for conda * - 1384 - `9444ad86 `_ - 2016-08-09 - dupre - fix issue with Python 2.7 * - 1383 - `d37ba163 `_ - 2016-08-08 - dupre - update setup * - 1381 - `899a6176 `_ - 2016-08-08 - dupre - fix FTP mocking + add info in blocref * - 1380 - `3b638532 `_ - 2016-08-08 - dupre - fix mocking ftp * - 1379 - `612ee477 `_ - 2016-08-08 - dupre - fix typo in variable name * - 1378 - `53daa9dd `_ - 2016-08-08 - dupre - fix issue with :content: tag * - 1377 - `78ba6078 `_ - 2016-08-08 - xavier dupré - update code about FTP ltransfering * - 1376 - `84c9442f `_ - 2016-08-08 - dupre - pep8 * - 1375 - `103b7ec3 `_ - 2016-08-07 - xavier dupré - update FTP callback function * - 1374 - `5a6b34e6 `_ - 2016-08-08 - dupre - update API for FTP transfer * - 1373 - `c48f23d9 `_ - 2016-08-07 - xavier dupré - update for FTP transfer * - 1372 - `92d19070 `_ - 2016-08-07 - dupre - update timeout default for jenkins jobs (due to sphinx slow down) * - 1371 - `dd6ba928 `_ - 2016-08-07 - dupre - fix conda environment * - 1370 - `86dc810d `_ - 2016-08-07 - dupre - update scripts * - 1369 - `4aeb758e `_ - 2016-08-07 - dupre - fix broken unit test * - 1368 - `e95c8b7a `_ - 2016-08-07 - dupre - update scipt for conda * - 1367 - `21719e1c `_ - 2016-08-07 - dupre - update conda build * - 1366 - `d71fb391 `_ - 2016-08-07 - dupre - display information while generation the documentation (info level) * - 1365 - `9440f8b7 `_ - 2016-08-07 - dupre - pep8 * - 1364 - `2c5f5eac `_ - 2016-08-07 - dupre - fixes for anaconda, reduce hash length for jenkins * - 1363 - `f8a8c60c `_ - 2016-08-06 - dupre - increase timeout for sphinx in jenkins jobs (resolving references takes longer) * - 1362 - `4000b0a2 `_ - 2016-08-05 - dupre - update dependencies * - 1361 - `68360cc7 `_ - 2016-08-05 - dupre - remove a default behavior for latex * - 1359 - `9fd7b349 `_ - 2016-08-05 - dupre - update documentation * - 1358 - `a6a3998d `_ - 2016-08-05 - dupre - update for python 2.7 * - 1357 - `e8f251f1 `_ - 2016-08-04 - dupre - add a function to check a bug * - 1356 - `191c90e7 `_ - 2016-08-01 - dupre - clean files * - 1355 - `a8a8e948 `_ - 2016-08-01 - dupre - pep8 * - 1354 - `28da4050 `_ - 2016-08-01 - dupre - fix unit test for appveyor + use fLOG instead of print for unit tests on cli * - 1353 - `d6b7eda1 `_ - 2016-07-31 - dupre - update appveyor * - 1352 - `77c580ab `_ - 2016-07-28 - dupre - update for appveyor * - 1351 - `b1f3af4a `_ - 2016-07-28 - dupre - update appveyor * - 1350 - `20158d4b `_ - 2016-07-28 - dupre - update appveyor * - 1349 - `d8951a25 `_ - 2016-07-27 - dupre - fix a bug for coverage 4.2 * - 1348 - `8ce88513 `_ - 2016-07-26 - dupre - update setup.py * - 1347 - `0960f1ac `_ - 2016-07-26 - dupre - update pyquickhelper to flake8 3.0 and pycodestyle 2.0 * - 1346 - `829b71c8 `_ - 2016-07-26 - dupre - remove argparse from requirements * - 1345 - `98c512df `_ - 2016-07-25 - dupre - update jenkins helper with parameters for unit test * - 1344 - `8458ce9d `_ - 2016-07-24 - dupre - update skip functions * - 1342 - `735fc10e `_ - 2016-07-24 - dupre - add option to run unit test if their estimated time is below a certain threshold * - 1341 - `0411446f `_ - 2016-07-23 - dupre - pep8 * - 1340 - `f5e86832 `_ - 2016-07-23 - dupre - add parameter unzip to ungzip_files * - 1338 - `91d4dee6 `_ - 2016-07-23 - dupre - update get_url_content_timeout to download by chunk * - 1337 - `71aae624 `_ - 2016-07-16 - dupre - change default value for mathdef_link_only * - 1336 - `f00ef558 `_ - 2016-07-16 - dupre - shorten the documention to avoid todos * - 1335 - `155dbbc0 `_ - 2016-07-16 - dupre - remove todoext in summaries * - 1334 - `35bde7c3 `_ - 2016-07-15 - dupre - fix missing import * - 1333 - `d66a4712 `_ - 2016-07-15 - dupre - fix python 2.7 * - 1332 - `7f45494f `_ - 2016-07-15 - dupre - disable a unit test for Python 2.7 * - 1331 - `52e06533 `_ - 2016-07-15 - dupre - fix for python 2.7 * - 1330 - `0ae0204a `_ - 2016-07-15 - dupre - fix for python 2.7 * - 1329 - `747a2853 `_ - 2016-07-15 - dupre - fix for python 2.7 * - 1328 - `e469de50 `_ - 2016-07-15 - dupre - fix unit teest * - 1327 - `3322b31e `_ - 2016-07-15 - dupre - pep8 * - 1326 - `ef3daac5 `_ - 2016-07-15 - dupre - fix unit test after last update * - 1324 - `92b2fdc0 `_ - 2016-07-15 - dupre - documentation, use of exref * - 1323 - `2605615c `_ - 2016-07-15 - dupre - add sphinx extension exref * - 1321 - `67991a18 `_ - 2016-07-15 - dupre - add pseudo content to blocref * - 1320 - `4d9d9cfd `_ - 2016-07-15 - dupre - add magic command nbref and fixes documentation to support it * - 1318 - `8fcbf944 `_ - 2016-07-15 - dupre - add another warning to hide by default * - 1317 - `1aa1054e `_ - 2016-07-15 - dupre - set default sort order * - 1316 - `bfdb762b `_ - 2016-07-15 - dupre - fix unit test on travis * - 1315 - `c080fa25 `_ - 2016-07-15 - dupre - add sphinx extension for faqref * - 1314 - `61750180 `_ - 2016-07-14 - dupre - fix a bug on linux * - 1313 - `212571d4 `_ - 2016-07-14 - dupre - fix unit test * - 1312 - `008963da `_ - 2016-07-14 - dupre - partially disable a unit test * - 1311 - `12859bfb `_ - 2016-07-14 - dupre - fix issues with unit test * - 1310 - `0d8f9c66 `_ - 2016-07-14 - dupre - add faqref sphinx directive * - 1309 - `9d971c77 `_ - 2016-07-14 - dupre - add unit test for tkinter * - 1308 - `ee3aade9 `_ - 2016-07-14 - dupre - fix bug in todoext * - 1307 - `9f303d89 `_ - 2016-07-14 - dupre - add unit test for file_split * - 1306 - `2484ab59 `_ - 2016-07-14 - dupre - update sphinx extension * - 1305 - `0e97ef95 `_ - 2016-07-14 - dupre - add unit test * - 1304 - `4a319963 `_ - 2016-07-14 - dupre - remove unused code * - 1303 - `2e7100ef `_ - 2016-07-14 - dupre - remove unused code * - 1302 - `0ce8e1ab `_ - 2016-07-09 - dupre - update appveyor * - 1301 - `e4e1e056 `_ - 2016-07-09 - dupre - fix typo * - 1300 - `f8688fbc `_ - 2016-07-09 - dupre - add automatically index for mathdef * - 1299 - `0c77aeb8 `_ - 2016-07-09 - dupre - try to fix python 2.7 on the build machine * - 1298 - `8bad72fd `_ - 2016-07-08 - dupre - change variable names * - 1297 - `7eacaffb `_ - 2016-07-08 - dupre - add default path * - 1296 - `218c1b40 `_ - 2016-07-08 - dupre - change set to tuple * - 1295 - `18a9d80d `_ - 2016-07-08 - dupre - update unit test for Python 2.7 * - 1294 - `2d8e7eb8 `_ - 2016-07-08 - dupre - update unit test * - 1293 - `8069bc14 `_ - 2016-07-08 - dupre - set numfig to True * - 1292 - `e3a7b099 `_ - 2016-07-08 - dupre - remove get_graphviz_dot * - 1291 - `b22bd9d9 `_ - 2016-07-07 - dupre - add index in mathdef, blocref, todoext * - 1290 - `7b22f86f `_ - 2016-07-06 - dupre - update automated documentation * - 1289 - `45b5e5bd `_ - 2016-07-05 - dupre - extend the list of warnings filtered out * - 1288 - `b710a0a8 `_ - 2016-07-05 - dupre - filter warnings + documentation * - 1287 - `ddf8e8f9 `_ - 2016-07-05 - dupre - remove test about not very used options * - 1285 - `b306c79b `_ - 2016-07-04 - dupre - fix import issue, add comments * - 1284 - `719d549e `_ - 2016-06-29 - dupre - change a default value * - 1283 - `f4594f6f `_ - 2016-06-25 - dupre - configuration, documentation * - 1282 - `c0e27a56 `_ - 2016-06-24 - dupre - add tag hidden, date, release to todoext * - 1281 - `3678cdca `_ - 2016-06-23 - dupre - add blocref extension * - 1280 - `f6b9d3cd `_ - 2016-06-22 - dupre - add extra lines around example and FAQ * - 1279 - `d9db3cb2 `_ - 2016-06-22 - dupre - fix number of for definition, ... * - 1278 - `f5319d4a `_ - 2016-06-22 - dupre - add latex packaages + fix link in mathdef * - 1277 - `f4797e5b `_ - 2016-06-21 - dupre - add sphinx extension mathdef * - 1276 - `206ecac4 `_ - 2016-06-19 - dupre - add a default value * - 1275 - `b381d1be `_ - 2016-06-19 - dupre - update default configuration for Sphinx * - 1274 - `bbabcabe `_ - 2016-06-18 - dupre - fix link images in slides * - 1273 - `c670204a `_ - 2016-06-18 - dupre - add pycodestyle * - 1272 - `7fa9af17 `_ - 2016-06-17 - dupre - fix appveyor * - 1271 - `eb99dbed `_ - 2016-06-17 - dupre - remove unnecessary code * - 1270 - `71b87208 `_ - 2016-06-15 - dupre - fix an issue with indices * - 1269 - `06e8026d `_ - 2016-06-14 - dupre - fix a type issue when estimating notebook slide splitting * - 1268 - `276d1a65 `_ - 2016-06-14 - dupre - add missing extensions when converting notebooks * - 1267 - `506583e1 `_ - 2016-06-12 - dupre - copy images from notebook folder to build folder (latex compilation) * - 1266 - `977cf0c9 `_ - 2016-06-11 - dupre - add parameter keep_item to add_menu_notebook to display a submenu * - 1265 - `e9a56a67 `_ - 2016-06-11 - dupre - update default configuration * - 1264 - `2fcb61b2 `_ - 2016-06-11 - dupre - update default configuration for projects * - 1263 - `1e5ce9fb `_ - 2016-06-11 - dupre - fix link to blog post * - 1261 - `55b739ff `_ - 2016-06-07 - dupre - add priority to todoext * - 1260 - `6c5dcab6 `_ - 2016-06-07 - dupre - update todoext with cost * - 1259 - `82f8ae19 `_ - 2016-06-07 - dupre - improve help generation * - 1258 - `c34de603 `_ - 2016-06-07 - dupre - fix documentation * - 1257 - `0de9b8e4 `_ - 2016-06-06 - dupre - fix issue link in the documentation * - 1256 - `68b4ef00 `_ - 2016-06-06 - dupre - fix documentation * - 1255 - `a226a124 `_ - 2016-06-06 - dupre - missing modification from the previous commit * - 1254 - `d7df1afd `_ - 2016-06-06 - dupre - fix setup and link to github * - 1253 - `61c22b4c `_ - 2016-06-06 - dupre - add tag issue to sphinx extension todoext * - 1252 - `af9c1cb6 `_ - 2016-06-06 - dupre - change waffle label * - 1251 - `140764d7 `_ - 2016-06-06 - dupre - add link to waffle badge * - 1250 - `865a1a41 `_ - 2016-06-06 - dupre - add module nbpresent to appveyor * - 1249 - `92ed6a67 `_ - 2016-06-06 - dupre - fix failing unit test * - 1248 - `cb3b2f7d `_ - 2016-06-06 - dupre - add module in auto_setup_dep.py * - 1247 - `ee327cd9 `_ - 2016-06-05 - dupre - add function nb2present * - 1246 - `59f29f6f `_ - 2016-06-05 - dupre - add notebook conversion to html with nbpresent * - 1244 - `ff99b024 `_ - 2016-05-29 - dupre - update logging * - 1242 - `a40ff975 `_ - 2016-05-29 - dupre - remove unnecessary condition * - 1241 - `e7f60555 `_ - 2016-05-29 - dupre - fix previous fix * - 1240 - `6e6c200a `_ - 2016-05-29 - dupre - fix unit test for appveyor * - 1239 - `93585b91 `_ - 2016-05-29 - dupre - add unit test for the code related to the setup * - 1238 - `e9daf71c `_ - 2016-05-23 - dupre - disable another test for Python 2.7 * - 1237 - `2f56091a `_ - 2016-05-23 - dupre - disable a unit test for Python 2.7 * - 1236 - `bdb28a7c `_ - 2016-05-23 - dupre - disable a unit test for compression * - 1235 - `71dc1590 `_ - 2016-05-22 - dupre - fix for Python 2.7 * - 1234 - `ac686f4c `_ - 2016-05-22 - dupre - pep8 * - 1233 - `b9a79e2d `_ - 2016-05-22 - dupre - another fix for Python 2.7 * - 1232 - `7beb0043 `_ - 2016-05-22 - dupre - delay unncessary import changing matplotlib backend * - 1231 - `d0ec6efb `_ - 2016-05-22 - dupre - fix for Python 2.7 * - 1230 - `ecbb7e56 `_ - 2016-05-22 - dupre - more explicit error message in unit test for Python 2.7 * - 1229 - `52196b40 `_ - 2016-05-21 - dupre - fix travis * - 1228 - `03d8b739 `_ - 2016-05-21 - dupre - improve compression functions * - 1227 - `152d00d7 `_ - 2016-05-16 - dupre - fix for Python 2.7 * - 1226 - `9bdb7de1 `_ - 2016-05-15 - dupre - fix for python 2.7 * - 1225 - `463bda56 `_ - 2016-05-15 - dupre - fix for Python 2.7 * - 1224 - `489f33a9 `_ - 2016-05-15 - dupre - fix unit test * - 1223 - `12474c8a `_ - 2016-05-15 - dupre - fix unit test * - 1222 - `4ea0bf55 `_ - 2016-05-15 - dupre - extend unit test coverage * - 1221 - `74850a4c `_ - 2016-05-15 - dupre - extend unit test coverage * - 1220 - `301792db `_ - 2016-05-11 - dupre - fix jenkins for Python 2.7 * - 1219 - `5b949a31 `_ - 2016-05-09 - dupre - fix a file name for the documentation * - 1218 - `ecccf6e4 `_ - 2016-05-08 - dupre - disable a test ofr Python 2.7 * - 1217 - `c881e703 `_ - 2016-05-07 - dupre - more explicit error message * - 1216 - `4a59c47e `_ - 2016-05-07 - dupre - update for python 2.7 * - 1215 - `72555d01 `_ - 2016-05-07 - dupre - update for python 2.7 * - 1214 - `409920a7 `_ - 2016-05-07 - dupre - update pep8, fix an issue with flake8 * - 1213 - `c3c702ee `_ - 2016-05-07 - dupre - add option math_number_all * - 1212 - `dac3ce1d `_ - 2016-05-05 - dupre - catch an exception to get better insight * - 1211 - `dfd7b785 `_ - 2016-05-05 - dupre - raise more exception, change a default value for parameter * - 1209 - `259ed49e `_ - 2016-05-04 - dupre - update travis, appveyor, flake8 * - 1208 - `7972687e `_ - 2016-05-04 - dupre - update travis * - 1207 - `297e0bb0 `_ - 2016-05-01 - dupre - fix a bug in command @FAQ and @code * - 1206 - `d65cb88a `_ - 2016-04-30 - dupre - less categories displayed * - 1205 - `db345d2f `_ - 2016-04-26 - dupre - deal with the case when latex is not installed * - 1204 - `63a90fb5 `_ - 2016-04-26 - dupre - replace an exception by a warning * - 1203 - `72387a94 `_ - 2016-04-26 - dupre - only display warning when there are some * - 1202 - `0ca2465e `_ - 2016-04-25 - dupre - update build_script * - 1201 - `9be070d6 `_ - 2016-04-24 - dupre - fix appveyor * - 1200 - `85f63cc6 `_ - 2016-04-24 - dupre - fix import issue for jupyter * - 1199 - `ea95f778 `_ - 2016-04-24 - dupre - update post_processing of notebooks * - 1198 - `353c496b `_ - 2016-04-23 - dupre - change links on notebook pages * - 1197 - `8e32772e `_ - 2016-04-23 - dupre - add module backports * - 1196 - `f21e7b46 `_ - 2016-04-22 - dupre - dpcumentation * - 1195 - `f1fe8431 `_ - 2016-04-20 - dupre - add more explicit error message * - 1194 - `a9c9abc5 `_ - 2016-04-17 - dupre - fix rst2html, avoid checking latex, dot * - 1193 - `267c5c99 `_ - 2016-04-17 - dupre - update dependencies, avoid raising an exception * - 1191 - `e58ce388 `_ - 2016-04-16 - dupre - fix one unittest due to nbconvert changes * - 1190 - `e52f3bda `_ - 2016-04-16 - dupre - update pyquickhelper with latest version of jupyter * - 1189 - `e17ae13f `_ - 2016-04-16 - dupre - add parameter replacements * - 1188 - `e56739bb `_ - 2016-04-14 - dupre - update for Python 2.7 (sphinx) * - 1187 - `06b23af3 `_ - 2016-04-13 - dupre - update for Python 2.7 * - 1186 - `3600bdea `_ - 2016-04-10 - dupre - remove unnecessary code * - 1184 - `b9e9e0d0 `_ - 2016-04-10 - dupre - add shortcut * - 1182 - `feb25372 `_ - 2016-04-10 - dupre - add visit and depart function for todoextlist * - 1181 - `4f55888a `_ - 2016-04-10 - dupre - fix a last issue in rst2html about latex expression (number was missing) * - 1180 - `4c5a54d6 `_ - 2016-04-10 - dupre - refactor rst2html, handle more extensions * - 1178 - `2776d44f `_ - 2016-04-07 - dupre - update templating, exceptions and unit test * - 1177 - `bfa7903b `_ - 2016-04-07 - dupre - fix a bug in todoext, add parameter tag * - 1176 - `5cf25e3d `_ - 2016-04-05 - dupre - update default configuration * - 1175 - `62ee1325 `_ - 2016-04-04 - dupre - update appveyor * - 1174 - `84248d55 `_ - 2016-04-04 - dupre - skip files not found when compressing * - 1173 - `f5a1851d `_ - 2016-04-04 - dupre - fix import issues and small bug in sphinx_todoext_extension * - 1172 - `650924f4 `_ - 2016-04-04 - dupre - add custom directive todoext * - 1171 - `f0e4aa38 `_ - 2016-04-04 - dupre - refactoring, move sphinx extension to a specific folder * - 1170 - `ff7147d3 `_ - 2016-04-04 - dupre - disable unit test on appveyor * - 1169 - `28dc5b91 `_ - 2016-04-03 - dupre - switch from pngmath to imgmath * - 1168 - `0c752def `_ - 2016-04-03 - dupre - fix an issue on travis * - 1167 - `26054b5f `_ - 2016-04-03 - dupre - update a unit test * - 1166 - `4fd579c7 `_ - 2016-04-03 - dupre - fix wrong imports * - 1165 - `ae84ea2d `_ - 2016-04-02 - dupre - allow to cache url when testing notebooks (step 1) * - 1164 - `2b3135a3 `_ - 2016-04-02 - dupre - fix parameter bootswatch_navbar_links * - 1163 - `6291e993 `_ - 2016-03-30 - dupre - disable a unit test for Python 2.7 * - 1162 - `1f4d8564 `_ - 2016-03-30 - dupre - others fixes for python 27 * - 1161 - `fa2b9637 `_ - 2016-03-30 - dupre - add unittest GUI + fix for Python 2.7 * - 1160 - `4ea6c3c1 `_ - 2016-03-30 - dupre - fix upper case issue * - 1159 - `50f4ee42 `_ - 2016-03-30 - dupre - fix a misspelling + improve error message * - 1158 - `297702f2 `_ - 2016-03-30 - dupre - fix for python 2.7 * - 1157 - `f7041aa0 `_ - 2016-03-30 - dupre - update for python 2.7 * - 1156 - `7b10e684 `_ - 2016-03-29 - dupre - fix unit tests, update get_...program * - 1155 - `c23f74e4 `_ - 2016-03-29 - dupre - refactoring, split a big file into 3 (utils_tests.py) * - 1154 - `71529232 `_ - 2016-03-29 - dupre - pep8 * - 1153 - `214d7377 `_ - 2016-03-29 - dupre - use jupyter-nbconvert instead of ipython nbcnvert * - 1152 - `cbabad11 `_ - 2016-03-28 - dupre - fix another unit test broken by Sphinx 1.4 * - 1150 - `c2001347 `_ - 2016-03-28 - dupre - fix pyquickhelper for Sphinx 1.4 * - 1149 - `f399a52c `_ - 2016-03-28 - dupre - fix appveyor * - 1148 - `8627c114 `_ - 2016-03-28 - dupre - applies pep8 * - 1147 - `0e8c7c07 `_ - 2016-03-28 - dupre - add parameter hide warning * - 1146 - `63797831 `_ - 2016-03-28 - dupre - fix unit test on travis * - 1145 - `2588bb48 `_ - 2016-03-28 - dupre - fix a bug in add_missing_development_version * - 1144 - `eeeb051d `_ - 2016-03-28 - dupre - add method add_missing_development_version, more test for mako and jinja2 * - 1142 - `ea23d4d4 `_ - 2016-03-28 - dupre - add mako to requirements * - 1141 - `7df18e66 `_ - 2016-03-28 - dupre - add templating functionality mako + jinja2 * - 1140 - `7aebb213 `_ - 2016-03-27 - dupre - applies pep8 * - 1139 - `c310ef99 `_ - 2016-03-27 - xavier dupré - fix issue for python 2.7 * - 1138 - `88793b9e `_ - 2016-03-27 - xavier dupré - fix for python 2.7 * - 1137 - `98f97787 `_ - 2016-03-27 - xavier dupré - checkings * - 1136 - `d4305187 `_ - 2016-03-27 - xavier dupré - typo * - 1135 - `8ecc0e08 `_ - 2016-03-27 - xavier dupré - update script for jenkins and python 27 * - 1134 - `ebbe471e `_ - 2016-03-27 - dupre - update unit tests * - 1133 - `3726e601 `_ - 2016-03-26 - dupre - improve unit tests * - 1132 - `584a36e7 `_ - 2016-03-26 - dupre - giving up on build on python 2.7 * - 1131 - `156859f7 `_ - 2016-03-26 - dupre - remove build 2.7 on travis... * - 1130 - `e1a2e551 `_ - 2016-03-26 - dupre - update for travis and python 2.7 * - 1129 - `b6c38b0b `_ - 2016-03-26 - dupre - fix a unit test + update for python 2.7 * - 1128 - `0f8f1126 `_ - 2016-03-26 - dupre - documentation + unit tests * - 1127 - `48a0be1c `_ - 2016-03-26 - dupre - update for travis * - 1126 - `6b29bafc `_ - 2016-03-26 - dupre - update for travis * - 1125 - `0bf89247 `_ - 2016-03-26 - dupre - catch an exception * - 1124 - `14feacab `_ - 2016-03-26 - dupre - update for travis * - 1123 - `8c4b1f77 `_ - 2016-03-26 - dupre - remove too long lines * - 1122 - `1c3931dc `_ - 2016-03-26 - dupre - update for travis and appveyor * - 1121 - `e4fd85c1 `_ - 2016-03-26 - dupre - update two unit test for travis * - 1120 - `9837365f `_ - 2016-03-26 - dupre - update notebooks due to previous refactoring, fix docstring2html when documentation is None * - 1119 - `2831e380 `_ - 2016-03-26 - dupre - add parameter extended to check_pep8 * - 1118 - `a4d0653c `_ - 2016-03-26 - dupre - remove shortcuts, update version number, refactoring * - 1117 - `c5134f23 `_ - 2016-03-26 - dupre - update df2rst * - 1116 - `2ab88f65 `_ - 2016-03-23 - dupre - add function walk * - 1115 - `32b4fdbf `_ - 2016-03-21 - dupre - add parameter fLOG to function synchronize_folder * - 1113 - `ad699b7b `_ - 2016-03-11 - dupre - update assert * - 1111 - `545eb232 `_ - 2016-03-10 - dupre - add parameter stdin=False when running notebooks * - 1110 - `942ede4b `_ - 2016-03-08 - dupre - add parameter kernel to avoid running the kernel for the documentation generation * - 1108 - `502764cb `_ - 2016-03-06 - dupre - add a parameter custom_style to the default configuration * - 1107 - `cffe08a2 `_ - 2016-03-06 - dupre - update the list of folders to look into * - 1106 - `d406e6db `_ - 2016-03-06 - dupre - revert previous modifications * - 1105 - `7edcc242 `_ - 2016-03-05 - dupre - update build scripts * - 1104 - `b50ac1de `_ - 2016-03-04 - dupre - allow comment with < > characters in it * - 1103 - `19723a52 `_ - 2016-03-01 - dupre - update default configuration * - 1102 - `298f2a76 `_ - 2016-02-28 - dupre - fix a unit test for anaconda (partially disable it) * - 1101 - `50d1d930 `_ - 2016-02-28 - dupre - fix type issue for linux * - 1100 - `45209690 `_ - 2016-02-28 - dupre - fix dependency for automated builds * - 1099 - `9a88c91b `_ - 2016-02-28 - dupre - update unit tests for Anaconda * - 1098 - `23febefd `_ - 2016-02-28 - dupre - switch from pycryptodome to pycryptodomex * - 1097 - `edb246e3 `_ - 2016-02-27 - dupre - fixes for Python 2.7 (copy js, css, issue with BytesIO) * - 1096 - `d3e8b05a `_ - 2016-02-27 - dupre - update timeout with a single constant * - 1095 - `9aa04736 `_ - 2016-02-26 - dupre - fix a bug due to a type issue * - 1094 - `e86be1cf `_ - 2016-02-26 - dupre - add the timeout in the options * - 1093 - `636bea09 `_ - 2016-02-24 - dupre - update with tiemout * - 1092 - `76264409 `_ - 2016-02-24 - dupre - disable a unit test on Anaconda * - 1091 - `708ff9df `_ - 2016-02-24 - dupre - add function html_in_frame * - 1090 - `f661f5f8 `_ - 2016-02-16 - dupre - fix unit test on travis * - 1089 - `7908cdd4 `_ - 2016-02-16 - dupre - add exception * - 1088 - `7ab0bbb2 `_ - 2016-02-15 - dupre - add missing path before running runpython sphinx custom command on a separate process * - 1087 - `cd34b4f5 `_ - 2016-02-15 - dupre - add option process to command runpython * - 1086 - `4710d23c `_ - 2016-02-14 - dupre - update readme * - 1085 - `fea2d838 `_ - 2016-02-14 - dupre - fix a bug in a unit test broken by parametrer sharepost * - 1084 - `f67af7e2 `_ - 2016-02-14 - dupre - add custom role bigger, make dates bigger in blog post, add share button in blog post * - 1083 - `a53f37d4 `_ - 2016-02-14 - dupre - add custom directive to add share button for twitter, linkedin, facebook * - 1082 - `eb1f5b6e `_ - 2016-02-13 - dupre - improve function unzip * - 1081 - `3780079a `_ - 2016-02-13 - dupre - check existence of a variable in sys for documentation * - 1080 - `a4f92595 `_ - 2016-02-13 - dupre - add unit test to tet runpython explicitely * - 1079 - `d5854cd1 `_ - 2016-02-13 - dupre - disable displays in unit test, fix a bug in runpython extension * - 1078 - `52969fc7 `_ - 2016-02-13 - dupre - add parameter sesysvar, increase unit test coverage, catch stdout, stderr to unit test some functions related to unit testing * - 1077 - `b329a56d `_ - 2016-02-13 - dupre - add option to enable disable pieces of documentation * - 1076 - `73989bb1 `_ - 2016-02-06 - dupre - add blog post + documentation + rename a unit test * - 1075 - `ec021982 `_ - 2016-02-05 - dupre - fix bug introduced by previous commit * - 1074 - `4de8758e `_ - 2016-02-05 - dupre - add function read_csv * - 1073 - `0f64e7b9 `_ - 2016-02-05 - dupre - update unit test code * - 1072 - `013c776b `_ - 2016-01-22 - dupre - update unit test function * - 1071 - `08293498 `_ - 2016-01-22 - dupre - fix exception call * - 1070 - `3308312a `_ - 2016-01-21 - dupre - update unit test error handling * - 1069 - `d9be739c `_ - 2016-01-21 - dupre - process error from setup_hook due to a change in pip 8.0 * - 1068 - `ea2349aa `_ - 2016-01-19 - dupre - update script for jenkins * - 1067 - `a67a86d8 `_ - 2016-01-04 - dupre - add function is_file_string * - 1064 - `9304c2ca `_ - 2016-01-02 - dupre - refactoring * - 1063 - `9098fda1 `_ - 2016-01-02 - dupre - documentation + unit test fix * - 1062 - `44f989f2 `_ - 2016-01-02 - dupre - move function is_travis_or_appveyor, fix for coverage publishing * - 1061 - `f17e6712 `_ - 2016-01-02 - dupre - update command line for codecov * - 1060 - `7957194d `_ - 2016-01-02 - dupre - update requirements * - 1059 - `72c0c6b0 `_ - 2016-01-02 - dupre - fix an exception * - 1058 - `b903a8ec `_ - 2016-01-02 - dupre - fix a name issue + documentation * - 1057 - `5f130dd2 `_ - 2016-01-02 - dupre - update to publish coverage to codecov * - 1056 - `3c2b8473 `_ - 2016-01-01 - dupre - disable another unit test on Python 2.7 * - 1055 - `d2b1e915 `_ - 2016-01-01 - dupre - fix two unittests * - 1054 - `9f6e41f2 `_ - 2016-01-01 - dupre - fix a few issues to an untested code * - 1053 - `cca447d4 `_ - 2016-01-01 - dupre - update with command line for coverage * - 1051 - `f30c095f `_ - 2016-01-01 - dupre - documentation + error message * - 1050 - `32f7be62 `_ - 2016-01-01 - dupre - fix unit test issues (key must be bytes for encryption) * - 1049 - `fd7d8c80 `_ - 2016-01-01 - dupre - add magic commands to encrypt, decrypt, compress, visualize differences * - 1048 - `23d9faa9 `_ - 2015-12-31 - dupre - fix an issue due to a probable recent change in jupyter notebooks * - 1047 - `f6bf142e `_ - 2015-12-31 - dupre - disable unit test on Python 2.7 for encryption, does not work well on Python 2.7 * - 1045 - `bf8bd5bb `_ - 2015-12-31 - dupre - add command line encrypt_file, decrypt_file * - 1044 - `de4441bb `_ - 2015-12-30 - dupre - update function zipfiles to get relative paths * - 1043 - `1d468560 `_ - 2015-12-28 - dupre - more displays while running unit tests * - 1041 - `7b77e568 `_ - 2015-12-27 - dupre - fix setup classifiers * - 1040 - `1d036014 `_ - 2015-12-27 - dupre - update setup.py, remove issue with a logging function * - 1039 - `840be4f8 `_ - 2015-12-25 - dupre - remove a previous change and disable a unit test which cannot work on Python 2.7 * - 1038 - `fa50e5a0 `_ - 2015-12-25 - dupre - fix unicode issue for Python 2.7 * - 1037 - `a4e8c5fa `_ - 2015-12-24 - dupre - add parameter fLOG in some places * - 1036 - `e66d9249 `_ - 2015-12-24 - dupre - disable unit test on travis * - 1035 - `1d91c7f0 `_ - 2015-12-24 - dupre - add parameter fLOG to generate_help_sphinx * - 1034 - `2465eb37 `_ - 2015-12-24 - dupre - update error message * - 1033 - `71a0d350 `_ - 2015-12-24 - dupre - update pyquickhelper and unit tests * - 1032 - `ab3e1a9c `_ - 2015-12-24 - dupre - update unit test for a better display * - 1031 - `7fdcf74a `_ - 2015-12-24 - dupre - test the unit tests * - 1030 - `4915ab84 `_ - 2015-12-22 - dupre - documentation + pep8 * - 1029 - `7a403e87 `_ - 2015-12-22 - dupre - update appveyor * - 1028 - `8f20306a `_ - 2015-12-21 - dupre - disable a unit test on travis because not impletmented on linux * - 1027 - `40acee20 `_ - 2015-12-21 - dupre - add uni tests * - 1026 - `bf2febbb `_ - 2015-12-21 - dupre - fix an issue with encoding * - 1023 - `93ae7afa `_ - 2015-12-17 - dupre - fix two unit tests * - 1022 - `32b120e2 `_ - 2015-12-17 - dupre - add a file for MockTransferFile, documentation * - 1021 - `0c461a18 `_ - 2015-12-15 - dupre - update, fix an exception * - 1020 - `f6573e30 `_ - 2015-12-14 - dupre - update setup, expose more parameters * - 1019 - `9be19d55 `_ - 2015-12-13 - dupre - improve runpython * - 1018 - `1f493963 `_ - 2015-12-12 - dupre - refactoring, update searchbox * - 1017 - `8f80a7c4 `_ - 2015-12-12 - dupre - update default configuration for pyquickhelper * - 1016 - `439f6b74 `_ - 2015-12-12 - dupre - fix unit test * - 1015 - `64a1e88c `_ - 2015-12-12 - dupre - add landscape * - 1013 - `eeb56c4a `_ - 2015-12-12 - dupre - simplify download download_requirejs * - 1012 - `cb3a5c67 `_ - 2015-12-12 - dupre - add function to download require.js (required for slides) * - 1010 - `d2f40837 `_ - 2015-12-10 - dupre - update automation script * - 1009 - `e49cc5bc `_ - 2015-12-09 - dupre - remove dateutils * - 1008 - `adeb80c3 `_ - 2015-12-05 - dupre - blog post * - 1007 - `d286e98d `_ - 2015-12-04 - dupre - update building script * - 1006 - `ba118479 `_ - 2015-12-03 - dupre - update jenkins server * - 1005 - `55f84794 `_ - 2015-12-02 - dupre - add setup_hook * - 1004 - `74124c36 `_ - 2015-11-23 - dupre - add parameter copy_add_ext * - 1003 - `70b9cdd1 `_ - 2015-11-22 - dupre - update git * - 1002 - `609a6b5c `_ - 2015-11-22 - dupre - update git function repo_ls for travis * - 1001 - `79783550 `_ - 2015-11-22 - dupre - add regular expression while deciphering encrypting data * - 1000 - `5066c4bb `_ - 2015-11-22 - dupre - update git command to use the same command line * - 999 - `d10c7dea `_ - 2015-11-22 - dupre - update error message * - 998 - `a75b261c `_ - 2015-11-21 - dupre - update for git * - 997 - `ba83f039 `_ - 2015-11-21 - dupre - update appveyor * - 996 - `ede83532 `_ - 2015-11-21 - dupre - update appveyor * - 995 - `8ae269ef `_ - 2015-11-21 - dupre - display pythonexe to be sure it is the right one * - 994 - `534ad650 `_ - 2015-11-19 - dupre - add command line encrypt and decrypt * - 993 - `fb0cd73a `_ - 2015-11-17 - dupre - applies pep8 * - 992 - `0ba61eb8 `_ - 2015-11-16 - dupre - update encrypted backup * - 991 - `a57c0199 `_ - 2015-11-15 - dupre - implements an encrypted backup on a hard drive * - 989 - `439a094b `_ - 2015-11-15 - dupre - fix unit test for python 3.5 (pycrypto not always available) * - 988 - `aa1792f0 `_ - 2015-11-15 - dupre - better handling of errors * - 987 - `c880c08f `_ - 2015-11-15 - dupre - update script info * - 986 - `84d8e90f `_ - 2015-11-15 - dupre - disable unit test for python 2 * - 985 - `0368c797 `_ - 2015-11-15 - dupre - update block size to upload faster * - 984 - `9c2194ce `_ - 2015-11-15 - dupre - fix issues with lzma for python 2 * - 983 - `f8849822 `_ - 2015-11-15 - dupre - add backup on FTP * - 982 - `24481e09 `_ - 2015-11-14 - dupre - change hash * - 981 - `7760a55e `_ - 2015-11-14 - dupre - update encrypted backup * - 980 - `f297b928 `_ - 2015-11-14 - dupre - add API to backup files on the cloud * - 979 - `b5730636 `_ - 2015-11-14 - dupre - update pyquickhelper with programmatic encrypted backup * - 978 - `1458665b `_ - 2015-11-14 - dupre - encrypt, decrypt files * - 977 - `b7414033 `_ - 2015-11-12 - dupre - fix a bug in auto_setup_dep.py * - 976 - `95d6876a `_ - 2015-11-12 - dupre - update auto_setup_dep.py for Anaconda * - 975 - `b77fab63 `_ - 2015-11-10 - dupre - update for appveyor * - 974 - `203fe645 `_ - 2015-11-09 - dupre - pep8 * - 973 - `929a8e5e `_ - 2015-11-09 - dupre - add extensions when preparing source file for python 2.7 * - 972 - `f04990cf `_ - 2015-11-08 - dupre - reduce a long line * - 971 - `42928b60 `_ - 2015-11-07 - dupre - update documentation to fix a unit test * - 970 - `5f15988f `_ - 2015-11-07 - dupre - update requirements.txt * - 969 - `d3a0596d `_ - 2015-11-07 - dupre - add unit test for a magic command * - 968 - `9bbde42e `_ - 2015-11-07 - dupre - add a new page gathering magic commands, uses tag @NB * - 967 - `24ffa779 `_ - 2015-11-07 - dupre - update build script * - 966 - `f21fefc7 `_ - 2015-11-05 - dupre - update build script * - 965 - `0ba8a60b `_ - 2015-11-05 - dupre - fix bugs due to previous refactoring for Jenkins * - 964 - `513bc231 `_ - 2015-11-04 - dupre - fix a small bug in scrip * - 963 - `f6b7f6fc `_ - 2015-11-04 - dupre - remove redondancy when building script * - 962 - `91d5382d `_ - 2015-11-04 - dupre - adjust a unit test for python 3.5 * - 961 - `806c8d84 `_ - 2015-11-03 - dupre - update to fix issues with python 3.5 virtual environment * - 959 - `acc3b995 `_ - 2015-11-02 - dupre - fix a bug in pyquickhelper about script generation for python 3.5 * - 958 - `3bd42bca `_ - 2015-11-01 - dupre - update the code to call python instead of pip to import modules * - 957 - `3db2ae0a `_ - 2015-11-01 - dupre - fix a bug introduced by previous commit * - 956 - `aad0fed2 `_ - 2015-11-01 - dupre - update jenkins scripts * - 955 - `cc5e7be0 `_ - 2015-11-01 - dupre - udpate scripts for Python 3.5 * - 954 - `d1e0cde4 `_ - 2015-11-01 - dupre - fix path to python 2.7 for jenkins scripts * - 953 - `95f9952c `_ - 2015-10-31 - xavier dupré - fix issue with setup on 2.7 * - 952 - `e79adf29 `_ - 2015-10-31 - dupre - updaye jenkins scripts * - 951 - `b8b459dc `_ - 2015-10-31 - dupre - fix jenkins for 2.7 * - 950 - `a5d9a3e5 `_ - 2015-10-31 - dupre - update jenkins scripts * - 949 - `773ae3ea `_ - 2015-10-31 - dupre - fix script for jenkins * - 948 - `f4e27e44 `_ - 2015-10-31 - dupre - update unit test due to recent changes * - 947 - `a9705add `_ - 2015-10-31 - dupre - simplify build script * - 946 - `9997fa72 `_ - 2015-10-31 - dupre - update setup.py * - 945 - `b21f45cc `_ - 2015-10-31 - dupre - fix pep8 issues, cheap trick for pyquickhelper and jenkins on py35 * - 944 - `a7fdb56e `_ - 2015-10-31 - dupre - remove a warning * - 943 - `ee317852 `_ - 2015-10-31 - dupre - better consistency when defining jenkins jobs * - 942 - `c6e2b87c `_ - 2015-10-29 - dupre - update unit tests * - 941 - `3fdd036e `_ - 2015-10-29 - dupre - attempts to fix unit test on appveyor * - 940 - `d333ed5b `_ - 2015-10-29 - dupre - fix an issue with travis and appveyor * - 939 - `765419b0 `_ - 2015-10-28 - dupre - update unit test * - 938 - `4daf0862 `_ - 2015-10-28 - dupre - update unit test for travis and appveyor * - 937 - `283ce7e9 `_ - 2015-10-28 - dupre - fix 2 unit tests for travis * - 936 - `5fce0295 `_ - 2015-10-27 - dupre - refactor, more consistent on tests remove on travis, appveyor * - 935 - `4e217110 `_ - 2015-10-27 - dupre - update appveyor * - 934 - `ede2ad54 `_ - 2015-10-27 - dupre - update code for python 3.5 * - 933 - `0f19c6dd `_ - 2015-10-27 - dupre - remove _virtualenv from the list of folder to copy * - 932 - `c0f960a8 `_ - 2015-10-27 - dupre - add function to get call stack * - 931 - `9365bab9 `_ - 2015-10-27 - dupre - fix unit test + remove too many prints * - 930 - `e651dd45 `_ - 2015-10-27 - dupre - update appveyor * - 929 - `c2dbe221 `_ - 2015-10-27 - dupre - update fix for Python 3.5 * - 928 - `78268159 `_ - 2015-10-27 - dupre - update appveyor * - 927 - `5726ab42 `_ - 2015-10-27 - dupre - update appveyor * - 926 - `a9c02c66 `_ - 2015-10-27 - dupre - update appveyor * - 925 - `da2e27d9 `_ - 2015-10-27 - dupre - update appveyor * - 924 - `98ad04e4 `_ - 2015-10-27 - dupre - update setup.py * - 923 - `7c068916 `_ - 2015-10-27 - dupre - update setup.py * - 922 - `0e5791ba `_ - 2015-10-27 - dupre - update yml * - 921 - `5184554d `_ - 2015-10-27 - dupre - update appveyor * - 920 - `717bc146 `_ - 2015-10-27 - dupre - update appveyor * - 919 - `d5726c47 `_ - 2015-10-27 - dupre - update appveyor * - 918 - `b5c4a565 `_ - 2015-10-27 - dupre - remove unneeded part * - 917 - `6cddd2f4 `_ - 2015-10-27 - dupre - add appveyor * - 916 - `4d7bd3ad `_ - 2015-10-26 - dupre - update pyquickhelper to fix virtual environments on python 3.5 * - 915 - `174cb3ea `_ - 2015-10-24 - dupre - fix a bug when delete a job on Jenkins * - 914 - `b6ed4d2e `_ - 2015-10-24 - dupre - better exception in unit test * - 913 - `f081662d `_ - 2015-10-23 - dupre - fix a dependency, disable a unit test on python 2 * - 912 - `9d55232b `_ - 2015-10-21 - dupre - update build setup * - 911 - `4bb8ef36 `_ - 2015-10-21 - dupre - remove references to pyquickhelper when building * - 910 - `86ccc153 `_ - 2015-10-18 - dupre - bug fix in python 2.7 * - 909 - `30f98067 `_ - 2015-10-14 - dupre - add parameter filename to the function filtering out files when uploading files through FTP * - 908 - `313b8320 `_ - 2015-10-13 - dupre - do not catch exception anymore when computing hash string * - 906 - `34d98f14 `_ - 2015-10-11 - dupre - catch SystemExit for function run_cmd * - 905 - `049f56de `_ - 2015-10-11 - dupre - increase size for pandoc when converting a notebook * - 904 - `e93d40d4 `_ - 2015-10-11 - dupre - fix unit test and update default configuration * - 902 - `ee98bcae `_ - 2015-10-10 - dupre - add epub copy * - 901 - `f48b0415 `_ - 2015-10-10 - dupre - switch from matplotlib latex engine to local latex engine for formula * - 900 - `78f45c15 `_ - 2015-10-10 - dupre - fix bugs in windows scripts introduced by previous commit * - 899 - `bb10784e `_ - 2015-10-10 - dupre - fix issue with _virtualenv, documentation, better checkings for Jenkins * - 898 - `2dbb830a `_ - 2015-10-09 - dupre - add epub by default when generating the documentation * - 897 - `150dcb4e `_ - 2015-10-08 - dupre - allow multiple roots for the documentatino server * - 896 - `0267888d `_ - 2015-10-08 - dupre - credentials can be different for each project for the jenkins server) * - 895 - `55279aea `_ - 2015-10-05 - dupre - fix sort_values for pandas 0.16 * - 894 - `aa44a125 `_ - 2015-10-05 - dupre - deals with several version of pandas * - 893 - `e291a188 `_ - 2015-10-05 - dupre - update pyquickhelper due to changes in pandas 0.17 (sort --> sort_values) * - 892 - `9d3e266c `_ - 2015-10-05 - dupre - post process notebook conversion in python * - 890 - `240563ce `_ - 2015-10-05 - dupre - better error message * - 889 - `903ac948 `_ - 2015-10-04 - dupre - update setup to create build_sphinx_all * - 888 - `ee0810ca `_ - 2015-10-01 - dupre - update helgen on Windows (/ --> \) * - 887 - `9178ec76 `_ - 2015-10-01 - dupre - add script auto_cmd_copy_sphinx.bat * - 886 - `e00cf9d7 `_ - 2015-09-30 - dupre - avoid importing matplotlib through pandas too soon * - 885 - `ecb943cf `_ - 2015-09-29 - dupre - add a notebook for unit testing purposes * - 884 - `6f2aab55 `_ - 2015-09-28 - dupre - update Mozilla/5.0 on windows * - 883 - `4460e672 `_ - 2015-09-28 - dupre - update javascript for automated menu * - 882 - `8461e530 `_ - 2015-09-27 - dupre - class MagicParser now interpret list, tuple, dictionaries * - 881 - `7c5b2cae `_ - 2015-09-26 - dupre - applies pep 8 * - 879 - `7a4f3f7e `_ - 2015-09-26 - dupre - update javascript for notebook * - 878 - `c0c14c3d `_ - 2015-09-26 - dupre - fix javascript in notebook, leaves comment to remove later * - 877 - `2301d04f `_ - 2015-09-26 - dupre - update javascipt for the automated menu * - 876 - `1a2a0220 `_ - 2015-09-24 - xavier dupré - change default value for local pypi server * - 875 - `79736670 `_ - 2015-09-24 - dupre - fix an issue for python 2.7, jenkins * - 874 - `ead2b5f9 `_ - 2015-09-24 - dupre - update scripts for python 27 * - 873 - `9a0e24c4 `_ - 2015-09-22 - dupre - update README.rst * - 872 - `ea5c4e17 `_ - 2015-09-22 - dupre - update jenkins class to deal with more python engines * - 871 - `23d1a979 `_ - 2015-09-20 - dupre - applies pep8 * - 869 - `c40a37c9 `_ - 2015-09-20 - dupre - add output * - 868 - `0a36d0a2 `_ - 2015-09-20 - dupre - fix missing import in runpython * - 867 - `51d74a75 `_ - 2015-09-19 - dupre - catch execution stack in runpython * - 866 - `d0dd08cd `_ - 2015-09-18 - dupre - revert to python 3.4 build_script.bat * - 865 - `a8804e31 `_ - 2015-09-17 - dupre - moving import to the beginning of files * - 864 - `de522eee `_ - 2015-09-17 - dupre - disable a test on python 2.7 * - 863 - `0e2306bf `_ - 2015-09-17 - dupre - update to deal with Python 3.5, minimizes dependencies * - 862 - `49886428 `_ - 2015-09-13 - dupre - fix name of a parameter for -h, --help automatically added * - 861 - `b99d0c5d `_ - 2015-09-12 - dupre - add eval_type to MagicCommandParser.add_argument * - 860 - `85852eb1 `_ - 2015-09-12 - dupre - copy the argument to avoid being dependant of further processing * - 859 - `d80f92a0 `_ - 2015-09-12 - dupre - fix bugs in MagicParser when parameter are being evaluating * - 858 - `5cae6a9a `_ - 2015-09-12 - dupre - add parameter no_eval to method add_argument * - 857 - `329df7ce `_ - 2015-09-10 - dupre - fix a dependency * - 856 - `94ea34d0 `_ - 2015-09-09 - dupre - fix a bug introduced by the previous commit * - 855 - `ed365c32 `_ - 2015-09-08 - dupre - fix a few issues for python 2.7 * - 854 - `8ef08ff3 `_ - 2015-09-08 - dupre - remove other annoying characters when compiling the documentation * - 853 - `da5b1e71 `_ - 2015-09-08 - dupre - a few update to fix the module for python 2.7 * - 852 - `5acc79be `_ - 2015-09-07 - dupre - fix issues while reading blospost (same update as for rst2html) + unit test * - 851 - `d054ae56 `_ - 2015-09-07 - dupre - fix issues when parsing sphinx documentation with custom environment (rst2html) * - 850 - `46d67f84 `_ - 2015-09-07 - dupre - pep8 * - 849 - `bd4c0901 `_ - 2015-09-07 - dupre - catch the standard output when parsing a blogpost (replace an error by a warning) * - 848 - `142893d2 `_ - 2015-09-07 - dupre - replace an exception by a warning * - 847 - `6a3c9672 `_ - 2015-09-07 - dupre - try to fix unit test , changing the order * - 846 - `904b20c5 `_ - 2015-09-06 - dupre - move a unit test by the end, disable some unnecessary instructions for sphinx * - 845 - `ce2531fa `_ - 2015-09-06 - dupre - change the ordering of unit test * - 844 - `f1f187b7 `_ - 2015-09-06 - dupre - fix a unit test, improve robustness of rst2html * - 843 - `db73bd9b `_ - 2015-09-06 - dupre - update unittests after the change in rst2html * - 842 - `fe7cc767 `_ - 2015-09-06 - dupre - more explicit error message * - 841 - `1b5724dc `_ - 2015-09-06 - dupre - add the possibility to test a sphinx directives * - 840 - `9f8ad3ae `_ - 2015-09-06 - dupre - improve rst2html to deal with sphinx directives * - 838 - `dff3c869 `_ - 2015-09-06 - dupre - rename a file run_script --> runpython * - 837 - `0beef8f7 `_ - 2015-09-06 - dupre - move import requests into the function which needs it * - 836 - `36ed5fb0 `_ - 2015-09-06 - dupre - reordering of import instructions * - 834 - `fe2d0da7 `_ - 2015-09-06 - dupre - mispelling for an exception class name * - 833 - `f7bd3c08 `_ - 2015-09-06 - dupre - add more extension to copy for copy27 * - 832 - `1483891b `_ - 2015-09-06 - dupre - data for unit test * - 830 - `de6300d3 `_ - 2015-09-04 - dupre - import import syntax * - 829 - `f6aaa173 `_ - 2015-09-04 - dupre - str --> unicode for python 2.7 * - 828 - `581e8f6c `_ - 2015-09-03 - dupre - extends hash length * - 827 - `87b5e38d `_ - 2015-08-31 - dupre - fix two import issues * - 826 - `8e9962b8 `_ - 2015-08-31 - dupre - fix some issues while generating the documentation * - 825 - `a361e76e `_ - 2015-08-30 - dupre - fix an annoying bug while replacing unicode characters * - 824 - `c0a262ed `_ - 2015-08-30 - dupre - replace unicode characters in latex produced by nbconvert * - 823 - `6063f923 `_ - 2015-08-30 - dupre - better error message for winpython, chineses in latex? * - 822 - `fb4b9603 `_ - 2015-08-29 - dupre - add pipedeptree to the virtual environment when checking readme.rst for pipy * - 821 - `0b41633d `_ - 2015-08-27 - dupre - update build script, more explicit design * - 820 - `fa0b8596 `_ - 2015-08-26 - dupre - change a bad design into something more explicit for the function automating the setup * - 819 - `5ffa1596 `_ - 2015-08-26 - dupre - move a function * - 818 - `4934adf2 `_ - 2015-08-26 - dupre - remove space * - 817 - `5f65dacd `_ - 2015-08-26 - dupre - update jenkins_job with install, fix in utils_test.py * - 816 - `a4828321 `_ - 2015-08-25 - dupre - disable a test on travis * - 815 - `3315c6ca `_ - 2015-08-25 - dupre - fix for linux and unit test * - 814 - `cb23e5bf `_ - 2015-08-25 - dupre - add function to ping a machine * - 813 - `af17324a `_ - 2015-08-24 - dupre - change an extension for the unit test in python 2.7 * - 812 - `9c79d7fe `_ - 2015-08-24 - dupre - fix an import issue * - 811 - `f1f0de1a `_ - 2015-08-24 - dupre - fix a bug for python 2.7 * - 810 - `66dcdc7c `_ - 2015-08-24 - dupre - add dependency on metakernel * - 809 - `09e9ce54 `_ - 2015-08-24 - dupre - improve the function which checks the documentation did not let any unresolved reference * - 808 - `83d3ffc1 `_ - 2015-08-23 - dupre - remove previous changed, add a better message exception * - 807 - `883a1c45 `_ - 2015-08-23 - dupre - add jupyter function missing in previous version of IPython (for Anaconda 2) * - 806 - `b6257156 `_ - 2015-08-22 - dupre - fix an import issue for Python 2 * - 805 - `d4fd3c7b `_ - 2015-08-22 - dupre - add function to call before and after the documentation generation * - 804 - `e71ddbed `_ - 2015-08-22 - dupre - process_standard_options_for_setup accepts 2tuple for unittests_modules * - 803 - `c7c4f26a `_ - 2015-08-22 - dupre - files can be removed from the coverage report * - 801 - `4bcdf727 `_ - 2015-08-20 - dupre - blog + fix in windows scripts * - 800 - `de1a2b1e `_ - 2015-08-19 - dupre - add warnings when a test was not run * - 799 - `67763323 `_ - 2015-08-19 - dupre - disable custom jupyter kernels on travis * - 798 - `aecc50e9 `_ - 2015-08-19 - dupre - disable custom jupyter kernels on travis * - 797 - `c02f18c6 `_ - 2015-08-19 - dupre - function install_jupyter_kernel to add a kernel for jupyter, can now specify a kernel for unittesting purposes * - 796 - `4224f9f0 `_ - 2015-08-19 - dupre - update script _build_script with local dependencies * - 795 - `411655c9 `_ - 2015-08-18 - dupre - disable a unit test on travis * - 794 - `f521bbc7 `_ - 2015-08-18 - dupre - disable the testing of a notebook on travis (permission error) * - 793 - `e78150e4 `_ - 2015-08-18 - dupre - fix a unit test broken by a previous commit * - 792 - `915c88a2 `_ - 2015-08-18 - dupre - fix a syntax error * - 791 - `e34fc27e `_ - 2015-08-18 - dupre - update script to run notebook with local dependencies * - 790 - `7dc73916 `_ - 2015-08-18 - dupre - update unit test for travis (jupyter_cmd + extension) * - 789 - `dd98660d `_ - 2015-08-18 - dupre - add dependency to jupyter in setup_script_dependency_py * - 788 - `5ea6b92c `_ - 2015-08-18 - dupre - add function to install notebook extensions, switch command line from ipython to jupyter, update documentation * - 787 - `4cfab67d `_ - 2015-08-15 - dupre - update version number, add function check_readme_syntax * - 786 - `78013f36 `_ - 2015-08-15 - dupre - disable a unit test on anaconda * - 785 - `01cbfb88 `_ - 2015-08-15 - dupre - improve an error message * - 784 - `48e66346 `_ - 2015-08-15 - dupre - disable a unit test for python 2.7 * - 783 - `19480d6d `_ - 2015-08-15 - dupre - fix a unit test for python 2.7 * - 782 - `8b652257 `_ - 2015-08-15 - dupre - disable a unit test for python 2.7 and anaconda * - 781 - `d78bbb1c `_ - 2015-08-15 - dupre - update readme.rst, disable a test when run in a virtual environment * - 780 - `912b7b75 `_ - 2015-08-14 - dupre - update unit tests * - 779 - `05303e27 `_ - 2015-08-14 - dupre - fix readme.rst (for pypi), add a test to check its syntax * - 778 - `3e57f3d8 `_ - 2015-08-14 - dupre - disable a unit test when IPython is not recent enough * - 777 - `a98b06ac `_ - 2015-08-14 - dupre - update jenkins_server with the latest version of pymyinstall * - 776 - `959b2dc8 `_ - 2015-08-14 - dupre - disable a function on python 2.7 * - 775 - `546f9e90 `_ - 2015-08-13 - dupre - fix for python 2.7 * - 774 - `27570437 `_ - 2015-08-13 - dupre - add dependency to jupyter_console * - 773 - `a9ea35c7 `_ - 2015-08-13 - dupre - change option -m to -u * - 772 - `aa088735 `_ - 2015-08-13 - dupre - disable a unit test * - 771 - `36b597dc `_ - 2015-08-13 - dupre - remove venv.__version__ * - 770 - `24e13e7d `_ - 2015-08-13 - dupre - update to Jupyter 4.0 * - 769 - `a6388126 `_ - 2015-08-13 - dupre - disable a unit test * - 768 - `8ac306e6 `_ - 2015-08-11 - dupre - update script to check readme.rst * - 767 - `342522f8 `_ - 2015-08-10 - dupre - add test to test readme.rst with docutils==0.8 * - 766 - `d3a05f0a `_ - 2015-08-09 - dupre - update a failing unit test on Windows * - 765 - `ac2cd996 `_ - 2015-08-08 - dupre - update script auto_run27 to remove the loop * - 764 - `0b038b61 `_ - 2015-08-08 - dupre - add basic checking for readme.rst * - 763 - `a9c03dc5 `_ - 2015-08-08 - dupre - add --stop to nosetests to stop after the first exception * - 762 - `e01f8051 `_ - 2015-08-08 - dupre - add function to parse markdown, tries to resolve python 2.7 issues * - 761 - `a2c1d64f `_ - 2015-08-07 - dupre - update .coveragerc * - 760 - `1c101900 `_ - 2015-08-07 - dupre - update .coveragerc * - 758 - `b600b7a7 `_ - 2015-08-07 - dupre - check a folder exists before cleaning it * - 757 - `496526f9 `_ - 2015-08-07 - dupre - add verbose to coveralls * - 756 - `2ec5bdc6 `_ - 2015-08-07 - dupre - update unit_tests run, saves reports in XML, binary format * - 755 - `bd1958d8 `_ - 2015-08-07 - dupre - first try to update documentation for unit tests * - 754 - `bb59c3a3 `_ - 2015-08-07 - dupre - update Sphinx command runpython with options rst, sin sout * - 753 - `7b2fc773 `_ - 2015-08-05 - dupre - add sphinx command runpython to produce RST documentation * - 752 - `07ab347f `_ - 2015-08-02 - dupre - update README.rst * - 751 - `3d8cc0e4 `_ - 2015-08-02 - dupre - replace none value by space when converting a table to html * - 750 - `42a45b07 `_ - 2015-08-02 - dupre - replace None by empty string in df2rst * - 748 - `a467aaa1 `_ - 2015-08-02 - dupre - improve documentation generation * - 747 - `e0f953e7 `_ - 2015-07-30 - dupre - add generation of pyproj, spaces, remove extra character in the documentation * - 746 - `136863b8 `_ - 2015-07-27 - dupre - fix setup.py, update documentation, fix a bug in doc server * - 745 - `c58645b5 `_ - 2015-07-19 - dupre - avoid file such as .settings to mess up when unit test try to guess the project name * - 744 - `ffdb01ba `_ - 2015-07-19 - dupre - rename a label * - 743 - `3e13c223 `_ - 2015-07-19 - dupre - fix links, remove extension for blogs * - 742 - `33c7c359 `_ - 2015-07-18 - dupre - update code for French language * - 740 - `5e54f9f3 `_ - 2015-07-18 - dupre - fix a misspelling on a function name * - 739 - `0664e1a8 `_ - 2015-07-18 - dupre - better verification process after sphinx * - 738 - `87afc35d `_ - 2015-07-18 - dupre - fix an import in a unit test * - 737 - `3256c74b `_ - 2015-07-18 - dupre - improve the documentation, add constructor into the documentation, check syntax of produced files * - 736 - `f28658ce `_ - 2015-07-18 - dupre - split sphinx_main.py into two files * - 735 - `f4d4f208 `_ - 2015-07-18 - dupre - udpate scripts * - 734 - `757cb865 `_ - 2015-07-17 - dupre - fix an import issue, remove a keyword global * - 732 - `8bcaca59 `_ - 2015-07-16 - dupre - fix a bug occuring when converting unit test files to python 2.7 * - 730 - `e7c3bda7 `_ - 2015-07-15 - xavier dupré - remove extra space * - 729 - `9dd2fc18 `_ - 2015-07-15 - dupre - fix the function adding HTML menu * - 728 - `ec4f187a `_ - 2015-07-15 - dupre - update documentation * - 727 - `576f9ac7 `_ - 2015-07-15 - dupre - add more test to detect errors earlier when generating the documentation * - 726 - `2e3af04c `_ - 2015-07-15 - dupre - add extra checkings when generating the documentation * - 725 - `540e5764 `_ - 2015-07-15 - dupre - add error + others checkings * - 724 - `fbf0cd91 `_ - 2015-07-15 - dupre - update javascript for the automated menu * - 723 - `e5b07ba2 `_ - 2015-07-14 - dupre - update unit test for anaconda * - 722 - `a5438b50 `_ - 2015-07-14 - xavier dupré - update jenkins script for pyquickhelper * - 721 - `89ee868e `_ - 2015-07-14 - xavier dupré - fix an issue with copy by reference * - 720 - `4b9f97b6 `_ - 2015-07-14 - dupre - update jenkins scripts * - 719 - `811645cd `_ - 2015-07-14 - dupre - add build script when updating modules * - 718 - `ea4240a5 `_ - 2015-07-14 - xavier dupré - remove a conversion which fails when sending the request to Jenkins * - 717 - `35d870e5 `_ - 2015-07-14 - dupre - update post_process.py * - 716 - `845cffa1 `_ - 2015-07-14 - dupre - enable disable test * - 715 - `21488a52 `_ - 2015-07-14 - dupre - forgotten from previous commit * - 714 - `28d54f0b `_ - 2015-07-14 - dupre - more unit test, disable svg through includegraphics from latex (does not work) * - 713 - `ba0d6ce4 `_ - 2015-07-11 - dupre - replace an exception by a warning * - 712 - `ef6c2d61 `_ - 2015-07-05 - dupre - remove extra spaces * - 711 - `b1e8b3bc `_ - 2015-06-30 - dupre - fix blogtoc.html * - 710 - `6399b7e8 `_ - 2015-06-29 - dupre - quick fix for blogtoc.html * - 709 - `99707c99 `_ - 2015-06-26 - dupre - update jenkins jobs * - 708 - `6578c27e `_ - 2015-06-25 - dupre - add function remove_character_under32 to remove all unexpected characters in a latex document * - 707 - `1cc5fadd `_ - 2015-06-21 - dupre - update setup.py * - 706 - `f184473b `_ - 2015-06-19 - dupre - add page title to the blog * - 705 - `20aad288 `_ - 2015-06-19 - dupre - add titles to aggregated blog post pages * - 704 - `5ff6b36e `_ - 2015-06-19 - dupre - fix an issue when converting SVG in notebook (check existence of Inkscape) * - 703 - `7ce5e273 `_ - 2015-06-19 - dupre - remove options -v for script local_pypi generated for jenkins * - 702 - `41cf9403 `_ - 2015-06-19 - dupre - change the navigational bar * - 701 - `79698ec4 `_ - 2015-06-19 - dupre - add extension to copy on the notebook folder (svg) * - 700 - `82a1c332 `_ - 2015-06-19 - dupre - add an extension when computing the size of a cell * - 699 - `6bfa0b71 `_ - 2015-06-18 - dupre - update notebook due to the last change (remove ipythonhelper from __init__.py) * - 698 - `a7cd7da9 `_ - 2015-06-18 - dupre - calls fix_tkinter..helper, do not import ipythonhelper function in __init__.py * - 697 - `21a68a28 `_ - 2015-06-17 - dupre - fix a variable name * - 696 - `07f981c2 `_ - 2015-06-17 - dupre - catch another encoding issue * - 695 - `ae9fb082 `_ - 2015-06-16 - dupre - fix a link (extension was missing) * - 694 - `89d9fbd1 `_ - 2015-06-16 - dupre - fix an issue while checking file existence of a very long string * - 693 - `561690c1 `_ - 2015-06-16 - dupre - fix an encoding issue while running the unit test * - 692 - `584ffea7 `_ - 2015-06-16 - dupre - improve navigational bar for the documentation * - 691 - `5ec0576b `_ - 2015-06-10 - dupre - call setup_hook in script any_setup_command * - 690 - `67ffb74e `_ - 2015-06-08 - dupre - update jenkins script with custom script * - 689 - `c6da9e9f `_ - 2015-06-07 - dupre - remove coverage picture * - 688 - `4a8d8aa3 `_ - 2015-06-07 - dupre - update documentation with coverage * - 687 - `c544858c `_ - 2015-06-07 - dupre - improve a unit test for travis * - 686 - `ca2cf2f3 `_ - 2015-06-06 - dupre - fix failing unit test due to a change in call_setup_hook * - 685 - `2775e567 `_ - 2015-06-06 - dupre - avoid use admonition when not needed for blog post * - 684 - `f5333515 `_ - 2015-06-06 - dupre - more consistent blog processing, remove a deprecated function * - 683 - `632ab132 `_ - 2015-06-06 - dupre - update license variable * - 682 - `bfc420b7 `_ - 2015-06-06 - dupre - update category links for blog posts * - 681 - `1ad808e5 `_ - 2015-06-06 - dupre - fix a unit test on travis * - 680 - `76c13169 `_ - 2015-06-06 - dupre - improve a unit test, more explicit message * - 679 - `b28e9e0a `_ - 2015-06-05 - dupre - add missing eol * - 678 - `0e56ef7a `_ - 2015-06-05 - dupre - change order in jenkins operations * - 677 - `67235f07 `_ - 2015-06-05 - dupre - add command setup;py setup_hook * - 675 - `6d2e264f `_ - 2015-06-02 - dupre - update automated scripts * - 674 - `85772859 `_ - 2015-06-02 - dupre - move some exceptions to a separate file * - 673 - `237a8ff2 `_ - 2015-06-02 - dupre - fix a path in windows automated scripts * - 672 - `accee260 `_ - 2015-05-30 - dupre - add shortcuts to pip_helper * - 671 - `fc080b70 `_ - 2015-05-29 - dupre - documentation + change some default settings for jenkins * - 670 - `857d64bb `_ - 2015-05-29 - dupre - fix two dependencies * - 669 - `0fbdd643 `_ - 2015-05-28 - dupre - fix issues when building version 2.7 for others modules, fix options success only for jenkins * - 668 - `36f17ce8 `_ - 2015-05-28 - dupre - update jenkins job to avoid starting a job if the previous one has failed * - 667 - `eb100056 `_ - 2015-05-27 - xavier dupré - update unit test, pip behaves in a weird way in virtual environments * - 666 - `9f81e990 `_ - 2015-05-28 - dupre - fix a unit test on travis * - 665 - `fae24318 `_ - 2015-05-28 - dupre - update helper for pip, do not use the command line anymore * - 664 - `8db13cbe `_ - 2015-05-27 - dupre - update unit test, more explicit message * - 663 - `4cf72c24 `_ - 2015-05-27 - dupre - version 1.2, add pip functionality, change magic_parser constructor * - 662 - `6d38ce8f `_ - 2015-05-25 - dupre - fix a bug in nb2slides, type * - 661 - `cb486016 `_ - 2015-05-24 - xavier dupré - add build_script before calling the script to build the setup * - 660 - `21b64e83 `_ - 2015-05-24 - dupre - update job name on jenkins * - 659 - `06d31ada `_ - 2015-05-24 - dupre - add more scripts to jenkins [setup], [setup_big] * - 658 - `92dd6174 `_ - 2015-05-24 - dupre - fix an issue in the setup * - 657 - `386f13be `_ - 2015-05-24 - dupre - debug * - 656 - `25d0840f `_ - 2015-05-24 - dupre - add missing dependency * - 655 - `a1ac8789 `_ - 2015-05-24 - dupre - another fix for jenkins * - 654 - `c22c53d0 `_ - 2015-05-24 - dupre - update jenkins_server.py, consequence of previous commit * - 653 - `a165d8f5 `_ - 2015-05-24 - dupre - add --no-cache-dir when installing pyquickhelper for Python 2 * - 652 - `6ed1cd0d `_ - 2015-05-24 - dupre - compile htmlhelp in a separate folder, it changes the encoding * - 651 - `97017b9f `_ - 2015-05-24 - dupre - explicit html output encoding for sphinx * - 650 - `12966d16 `_ - 2015-05-24 - dupre - remove extra spaces * - 649 - `70bbac3c `_ - 2015-05-24 - dupre - fix unit test for python 2.7 * - 648 - `5062c0fb `_ - 2015-05-23 - dupre - remove a line used for debug * - 646 - `1c75e194 `_ - 2015-05-23 - dupre - fix the build for ipython * - 645 - `6f047777 `_ - 2015-05-23 - dupre - add functions nb2slides, nb2html * - 644 - `c87b9339 `_ - 2015-05-23 - dupre - add a unit test to test the ipython command line * - 643 - `dc21b00e `_ - 2015-05-23 - dupre - use include_folder parameter in change_status_folder * - 642 - `5c3d42c3 `_ - 2015-05-23 - dupre - call get_temp_folder in a unit test instead of cleaning a temporary folder * - 641 - `29bfbd37 `_ - 2015-05-23 - dupre - fix a build, missing import * - 640 - `d11f6d02 `_ - 2015-05-23 - dupre - add parameter to _setup_hook, propagate through documentation and unit test * - 639 - `4fa065c9 `_ - 2015-05-23 - dupre - documentation, +merge_notebook, use logging, update change_file_status * - 638 - `3a20f562 `_ - 2015-05-22 - dupre - switching back to default behavior for function run_unittests_for_setup * - 637 - `f79ec13f `_ - 2015-05-22 - dupre - fix an issue with scripts LONG and SKIP * - 636 - `c4e32430 `_ - 2015-05-22 - dupre - split cmd into a list * - 635 - `617a4f9e `_ - 2015-05-22 - dupre - fix a variable name * - 634 - `0c7129d3 `_ - 2015-05-22 - dupre - use subprocess.call * - 633 - `a09ae45f `_ - 2015-05-22 - dupre - add sys.exit to the script to run to call _setup_hook * - 632 - `76bd0d1e `_ - 2015-05-22 - dupre - pep8 * - 631 - `9073b3fe `_ - 2015-05-22 - dupre - add more print when calling _setup_hook * - 630 - `58179eca `_ - 2015-05-21 - dupre - fix minor issues (variables names, string, imported modules) * - 629 - `441df0a5 `_ - 2015-05-21 - dupre - run _setup_hook in a separate process * - 628 - `325a5f63 `_ - 2015-05-21 - dupre - change dependency, update windows scripts * - 627 - `898bfbe5 `_ - 2015-05-21 - dupre - add a missing parameter * - 626 - `1853a6e9 `_ - 2015-05-21 - dupre - fix an issue for jenkins jobs * - 625 - `a8e9e9db `_ - 2015-05-20 - dupre - more options to generate jenkins jobs, add .chm format for the automated help on Windows * - 623 - `92ba11de `_ - 2015-05-19 - dupre - fix an issue with the previous refactoring (xml config cannot start with a space) * - 622 - `d7621c1c `_ - 2015-05-19 - dupre - fix fir the setup 27 * - 620 - `ab130071 `_ - 2015-05-19 - dupre - add options to job definition for Jenkins * - 619 - `5d0d5275 `_ - 2015-05-19 - dupre - fix a bug in build script (do not run two different setup.py from the same current folder, python is messing up the build folders) * - 618 - `c5383ca9 `_ - 2015-05-19 - dupre - avoid empty titles in notebooks * - 616 - `7aa99508 `_ - 2015-05-19 - dupre - fix a path issue when importing the module (help generation) * - 615 - `ea6f3ecc `_ - 2015-05-19 - dupre - fix a unit test about Jenkins (related to previous commit) * - 614 - `1868b091 `_ - 2015-05-19 - dupre - upate jenkins script, moves the call to _setup_hook to setup.py for sphinx * - 613 - `f8b7a8c9 `_ - 2015-05-18 - dupre - add function _setup_hook to initialize the module before unit tests or documentation generation * - 612 - `72a1f3a0 `_ - 2015-05-18 - dupre - change add_notebook_menu to deal with several levels * - 611 - `39afaa8b `_ - 2015-05-17 - dupre - applies pep8 * - 610 - `9a3bb17f `_ - 2015-05-17 - dupre - a bug which would happen if the unit test fails * - 609 - `5aeec60b `_ - 2015-05-17 - dupre - fix a variable name in the automated documentation * - 608 - `18c16a28 `_ - 2015-05-17 - dupre - measure the processing time for each notebook run in unit test * - 607 - `8b549ae9 `_ - 2015-05-16 - dupre - fix a symbol on blog post pages * - 606 - `38391c95 `_ - 2015-05-16 - dupre - adapt the script copying reveal.js when there are several layout * - 605 - `8a662373 `_ - 2015-05-16 - dupre - add flag -u to tell python.exe to print standard output while running and not only at the end * - 604 - `fb89dcf2 `_ - 2015-05-16 - dupre - add a test case for the function add_tag_slide, fix a bug * - 603 - `e27bcf1f `_ - 2015-05-16 - dupre - enable coverage computation back (t was disabled) + handle the case when there is no notebook * - 601 - `4e5490f3 `_ - 2015-05-16 - dupre - method add_tag_slide to autmatically split a notebook into slides * - 600 - `3f5fae07 `_ - 2015-05-15 - dupre - update reveal.js to use sphinx's version, tweak the produces html slides * - 599 - `006a3945 `_ - 2015-05-15 - dupre - remove unncessary blocking in .gitignore * - 598 - `46781108 `_ - 2015-05-15 - dupre - add reveal.js during the documentation generation * - 597 - `35b2e92e `_ - 2015-05-15 - dupre - change job name on jenkins * - 596 - `46477753 `_ - 2015-05-15 - dupre - add script auto_doc_server.py and .bat, changes the job name in jenkinshelper * - 595 - `2321c51a `_ - 2015-05-15 - dupre - new trie to fix the build * - 594 - `de3cd515 `_ - 2015-05-15 - dupre - fix an import issue, finalize the automated menu on notebooks * - 593 - `b3f14aa4 `_ - 2015-05-15 - dupre - remove a matplotlib import from the root * - 592 - `5afea02e `_ - 2015-05-15 - dupre - fix an issue with nbconvert, better javascript for menus, change the way tkinter issue is handled * - 591 - `6ad9b203 `_ - 2015-05-15 - dupre - blog + menu for notebooks + fix graphs on travis * - 590 - `207944ee `_ - 2015-05-14 - dupre - add function add_notebook_menu to add a menu within a notebook * - 589 - `cc4407b7 `_ - 2015-05-14 - dupre - fix an issue when converting a notebook into RST (case issue when using intern references) * - 588 - `184cc1da `_ - 2015-05-14 - dupre - fix a module name * - 587 - `3e9c7f08 `_ - 2015-05-14 - dupre - documentation, third try to fix an issue with tkinter and virtual env * - 586 - `9a6952f9 `_ - 2015-05-14 - dupre - second try for tkinter, fix an issue with a default value for extra_ext * - 585 - `4fc50425 `_ - 2015-05-14 - dupre - fix an issue tkinter on virtual environment * - 584 - `fc5222ca `_ - 2015-05-14 - dupre - add function store_notebook_path * - 582 - `868ead32 `_ - 2015-05-14 - dupre - update notebook_runner to deal with widgets * - 581 - `74013ac1 `_ - 2015-05-14 - dupre - add interactive controls to the notebook connected to a function * - 580 - `a3c0a0a3 `_ - 2015-05-14 - dupre - update a notebook for ipython 3 * - 579 - `416d4378 `_ - 2015-05-14 - dupre - change return type of function process_notebook, return skipped notebooks, add parameter extra_ext to the setup_helper functions * - 578 - `bef4dbdf `_ - 2015-05-14 - dupre - avoid choosing "." as a path with python34 is not found * - 577 - `85f96c74 `_ - 2015-05-11 - dupre - expose default_engine _paths to python engine (build_script) * - 576 - `726b948d `_ - 2015-05-10 - dupre - more explicit message * - 575 - `4e06d3f5 `_ - 2015-05-10 - dupre - ? * - 574 - `ed4d9b13 `_ - 2015-05-10 - dupre - update test_changes, it does not use another module anymore * - 573 - `b4818808 `_ - 2015-05-10 - dupre - update .ignore * - 572 - `a8b2d70e `_ - 2015-05-10 - dupre - allow the blog list to be given as a file name * - 571 - `69ac99f4 `_ - 2015-05-10 - dupre - blgo post about write_module_scripts * - 570 - `60900b62 `_ - 2015-05-10 - dupre - add function write_module_scripts which produces a script to grab and read blog post * - 569 - `f78bdd82 `_ - 2015-05-09 - xavier dupré - avoid pip install for pyquickhelper when building for python 2.7 and jenkins * - 568 - `46789ff0 `_ - 2015-05-09 - xavier dupré - update the local pypi script * - 567 - `cc70d9ae `_ - 2015-05-09 - xavier dupré - update build script to give a different name to all virtual environment * - 566 - `a7311bc7 `_ - 2015-05-09 - xavier dupré - update script for jenkins (virtual environment) * - 565 - `ade0571c `_ - 2015-05-09 - xavier dupré - still updating scripts for jenkins, fix a bug (variables having the same name) * - 564 - `8d09958d `_ - 2015-05-09 - xavier dupré - fix script for python 2.7, refine script for _LONG, _SKIP under jenkins * - 563 - `2ef5fecc `_ - 2015-05-08 - xavier dupré - fix the setup for python 2.7, not perfect but working * - 562 - `499bd0cb `_ - 2015-05-08 - dupre - convert notebooks to slides * - 561 - `3bfb90d2 `_ - 2015-05-08 - xavier dupré - simplify the build scripts * - 560 - `fb731b7b `_ - 2015-05-08 - xavier dupré - disable another unit test on linux * - 559 - `cf0ca365 `_ - 2015-05-08 - xavier dupré - disable a unit test on linux (not implemented yet) * - 558 - `75142521 `_ - 2015-05-08 - xavier dupré - modification for the notebook + fix a bug for Linux * - 557 - `001fdcd3 `_ - 2015-05-08 - xavier dupré - fix another path issue introduced for WinPython * - 556 - `383199b9 `_ - 2015-05-08 - xavier dupré - fix a path issue in the script introduced for WinPython * - 555 - `9cb59c5a `_ - 2015-05-08 - xavier dupré - disable 2 unit tests in a conda virtual environment * - 554 - `ea526771 `_ - 2015-05-08 - xavier dupré - patch for winpython * - 553 - `43f27676 `_ - 2015-05-08 - xavier dupré - fixed build for pyquickhelper on python 2.7 * - 552 - `578917ca `_ - 2015-05-08 - xavier dupré - remove echo off, add flag -v to pypi script * - 551 - `6f51451a `_ - 2015-05-08 - xavier dupré - new series of fixes for Jenkins * - 550 - `fd738704 `_ - 2015-05-08 - xavier dupré - fix an issue in a script * - 549 - `aa2ad145 `_ - 2015-05-08 - xavier dupré - update jenkins script, add a description, deal with anaconda * - 548 - `a881a132 `_ - 2015-05-07 - dupre - update build script * - 546 - `caa5c80f `_ - 2015-05-06 - dupre - fix unit test for python 2.7 * - 545 - `78f352df `_ - 2015-05-06 - dupre - refine setup.py, add unittests [LONG], [SKIP], download content with timeout, update jenkins * - 544 - `14d29999 `_ - 2015-05-05 - dupre - fix an issue with the name of the virtual environment in the automated scripts * - 543 - `62c5eb00 `_ - 2015-05-05 - dupre - update setup.py * - 542 - `93d419a9 `_ - 2015-05-04 - dupre - avoid raising an exception (it should be enabled back when linux script are ready) * - 541 - `80cff318 `_ - 2015-05-04 - dupre - better default values for jenkins script * - 540 - `5383412a `_ - 2015-05-04 - dupre - fix script for python 27 * - 539 - `2201c1db `_ - 2015-05-04 - dupre - remove auto_setup_dep.py * - 538 - `fa9a80bd `_ - 2015-05-04 - dupre - fix a unit test failing on linux * - 537 - `8d81679d `_ - 2015-05-04 - dupre - update the script which run unit test and generates the documentation from a virtual environment * - 536 - `07fbb578 `_ - 2015-05-04 - dupre - update script automatically generated by the module * - 535 - `8a544d6d `_ - 2015-05-03 - dupre - fix path issues * - 534 - `bf5e3ae0 `_ - 2015-05-03 - dupre - fix a couple of issues with virtual environments and paths * - 533 - `2a20048e `_ - 2015-05-03 - dupre - fix a failing unit test (path changed) * - 532 - `9e6fd6ac `_ - 2015-05-03 - dupre - add the script automation to the module, it automatically creates scripts * - 531 - `e572eba0 `_ - 2015-05-01 - dupre - cancel the previous commit * - 530 - `7a8dd3bf `_ - 2015-05-01 - dupre - remove extra space * - 529 - `70da1c85 `_ - 2015-05-01 - dupre - check incoherence in jenkins job * - 528 - `734702ca `_ - 2015-04-29 - dupre - update jenkins_helper to be more robust, disable flake8 on anaconda * - 526 - `634c8d86 `_ - 2015-04-29 - dupre - fix a bug with the code automating the creation of jenkins jobs * - 525 - `16443a20 `_ - 2015-04-29 - dupre - cosmetic * - 524 - `05deb348 `_ - 2015-04-29 - dupre - improve pep8, somehow anaconda behaves differently (more strict) * - 523 - `818ebcb0 `_ - 2015-04-29 - dupre - fix a unit test failing on linux * - 522 - `8474f33a `_ - 2015-04-28 - dupre - fix an issue with jenkins and python 2.7 * - 521 - `1a6b4e62 `_ - 2015-04-28 - dupre - update jenkins automation * - 520 - `2b1078b0 `_ - 2015-04-28 - dupre - update build_setup_help_on_windows to run unit tests on anaconda * - 519 - `f3f65149 `_ - 2015-04-27 - dupre - update readme.rst * - 518 - `97dbb6e7 `_ - 2015-04-27 - dupre - update readme.rst * - 517 - `a0c142c6 `_ - 2015-04-27 - dupre - change an example in a notebook to avoid importing scikit-learn * - 516 - `90945684 `_ - 2015-04-27 - dupre - add a unit test, fix na import issue in a notebook * - 515 - `e4ece5b6 `_ - 2015-04-27 - dupre - fix a series of small bugs, missing import in a notebook, type for python 2.7, expose another parameter in setup_helper * - 514 - `4060ed69 `_ - 2015-04-27 - dupre - add the path to the module when running notebook in a unit test * - 513 - `5c7ae9fd `_ - 2015-04-26 - dupre - add a unit test to test the notebooks, improve the functionss to run a notebook * - 512 - `32727660 `_ - 2015-04-26 - dupre - fix a couple of issues in notebooks, missing import * - 511 - `8e89b13c `_ - 2015-04-26 - dupre - documentation and blog_root * - 509 - `20ce00b3 `_ - 2015-04-25 - dupre - add a missing parameter when building the version for python 2.7 * - 508 - `b06cf31a `_ - 2015-04-25 - dupre - fix unit tests for python 2.7 * - 507 - `5f05b390 `_ - 2015-04-25 - dupre - fix a bug and switch to uppercase * - 506 - `f29e27ff `_ - 2015-04-25 - dupre - fix a couple of issues in documentation generation, add dependencies for Jenkins jobs * - 505 - `bfcae7f2 `_ - 2015-04-25 - dupre - add a link to the blog post main page from the index page * - 503 - `ec002e6f `_ - 2015-04-24 - dupre - remove mandatory version on ipython * - 502 - `1cf47879 `_ - 2015-04-24 - dupre - update the setup, move dependency to optional * - 501 - `12aa9c7d `_ - 2015-04-24 - dupre - fix an issue when getting the documentation for a static method * - 500 - `5ff8ef60 `_ - 2015-04-23 - dupre - fix another issue for python 2.7 * - 499 - `d9fcdb17 `_ - 2015-04-23 - dupre - change the font for diffview, fix the inline parameter * - 498 - `d4d322a1 `_ - 2015-04-23 - dupre - fix an issue with python 2.7 * - 497 - `ed401cb4 `_ - 2015-04-23 - dupre - finalize the function producing a diff to insert in a notebook * - 496 - `53beaff9 `_ - 2015-04-23 - dupre - revisit the functions about diffjs (diff with javascript) * - 495 - `2387b7f1 `_ - 2015-04-22 - dupre - shorten path of module while generating the automated documentation * - 494 - `3e2102f8 `_ - 2015-04-22 - dupre - avoid the generation of the documentation to fail when there is no notebook * - 493 - `eaef9d60 `_ - 2015-04-21 - dupre - remove spaces in setup * - 492 - `7e145486 `_ - 2015-04-21 - dupre - update setup.py again * - 491 - `6d012678 `_ - 2015-04-21 - dupre - update setup.py * - 490 - `30bf0769 `_ - 2015-04-21 - dupre - move utils_tests, shorten setup.py, fix a version issue * - 488 - `9fa4be9b `_ - 2015-04-21 - dupre - environment variable USERNAME does not exists on Travis * - 487 - `f8586c53 `_ - 2015-04-21 - dupre - update setup.py to enforce the writing of version.txt * - 486 - `37b175d0 `_ - 2015-04-21 - dupre - relative path when running coverage while running unit tests * - 485 - `5e466177 `_ - 2015-04-20 - dupre - add link to the post to the aggregated pages * - 484 - `125174a2 `_ - 2015-04-20 - dupre - update function py3to2 to enable alias when importing local modules * - 483 - `2db72959 `_ - 2015-04-19 - dupre - another series of fixes for python 2.7 and its ugly encoding * - 482 - `6adbacca `_ - 2015-04-18 - dupre - fix a failing unit test for python 2.7 * - 481 - `c9401626 `_ - 2015-04-18 - dupre - disable a unit test on travis * - 480 - `0f6a4e51 `_ - 2015-04-18 - dupre - remove extra spaces * - 479 - `280b1ba0 `_ - 2015-04-18 - xavier dupré - fix issues in the latest added unit test * - 478 - `26db2dde `_ - 2015-04-18 - dupre - disable a unit test on travis * - 477 - `799a04b2 `_ - 2015-04-18 - dupre - accept regular expressions and functions to filter out files when using FTP transfer * - 476 - `40a08021 `_ - 2015-04-18 - dupre - more coverage for the functions generating documentation, fix a few relative paths, FTP transfer is more flexible * - 475 - `d09184d9 `_ - 2015-04-18 - dupre - fix a unit test for Travis * - 474 - `7349190d `_ - 2015-04-18 - dupre - update a unit test failing on Travis * - 473 - `a5d9ddc2 `_ - 2015-04-18 - dupre - more explicit error for a unit test * - 472 - `5ba5bae5 `_ - 2015-04-17 - dupre - add a couple of unit tests to slightly increase the coverage * - 471 - `69076b3b `_ - 2015-04-17 - dupre - finalize the migration of the module to python 2.7 * - 470 - `c5e2fa48 `_ - 2015-04-17 - dupre - flake8 * - 469 - `6087f3b7 `_ - 2015-04-17 - dupre - do some replacement in the setup * - 468 - `3adf9cdd `_ - 2015-04-17 - dupre - failed try * - 467 - `c82691e6 `_ - 2015-04-16 - dupre - make the class BlogPost sortable * - 466 - `3e5ca254 `_ - 2015-04-16 - dupre - python 2.7 is more robust as every string is unicode * - 465 - `f0405a9d `_ - 2015-04-16 - dupre - first version of the migration of the module python2.7 * - 463 - `3d15f975 `_ - 2015-04-16 - dupre - update .gitignore * - 462 - `9bdd8cb5 `_ - 2015-04-16 - dupre - update jenkins and unit test to be more robust * - 461 - `79ef2a57 `_ - 2015-04-16 - dupre - update notebook_runner to ipython 3.1 * - 460 - `4c0e3fc3 `_ - 2015-04-15 - dupre - fix a bug introduced during the migration of function run_notebook for ipython 3.1 * - 456 - `025c0639 `_ - 2015-04-15 - dupre - update open_ipython_notebook to accept a custom path * - 455 - `185c00d9 `_ - 2015-04-15 - dupre - fix notebooks conversion with IPython 3 * - 454 - `4af35d58 `_ - 2015-04-15 - dupre - fix requirements to use the latest ipython * - 453 - `595d8653 `_ - 2015-04-15 - dupre - migration to ipython 3 * - 452 - `bc28fbe9 `_ - 2015-04-13 - dupre - replace an exception by a warnings when transfering javascripts files to the site (for snap) * - 451 - `2a28725e `_ - 2015-04-13 - dupre - add a function to modifiy the root of static files in notebooks when generating the documentation * - 450 - `8378cd09 `_ - 2015-04-12 - dupre - another try to add a link to blog post without manually adding it (still looking for an automated way to add label) * - 448 - `54683662 `_ - 2015-04-12 - dupre - add bokeh extension to add bokeh graphs in the documentation * - 447 - `e2db4f55 `_ - 2015-04-11 - dupre - add blog links * - 446 - `6c73e5ed `_ - 2015-04-11 - dupre - fix some issues with different configurations for the help generation introduced by a new functionality (blogs) * - 445 - `a7b45cc5 `_ - 2015-04-11 - dupre - split a big file into 3 (sphinx_main.py) * - 444 - `c397ee29 `_ - 2015-04-11 - dupre - add missing template when a project contains multiple config files * - 443 - `3f7a7c89 `_ - 2015-04-11 - dupre - add commit number to the changes page (documentation generation) * - 442 - `e98951b1 `_ - 2015-04-11 - dupre - better error message in exception HelpGenException * - 441 - `6c8b4ea7 `_ - 2015-04-10 - dupre - add another during blog generation * - 440 - `2ac4a636 `_ - 2015-04-09 - dupre - set the language to "en" when it is not specified * - 439 - `5814fb8b `_ - 2015-04-08 - dupre - fix an issue with links to images in blogs (very basic for the moment) * - 438 - `f77952b5 `_ - 2015-04-07 - dupre - new blog post * - 437 - `b302b044 `_ - 2015-04-07 - dupre - fix the link the blog post in rss.xml * - 436 - `2f245900 `_ - 2015-04-07 - dupre - remove extra spaces * - 435 - `ec03ae54 `_ - 2015-04-07 - dupre - add a function to modify a file just before uploading it to a website * - 434 - `4ef97964 `_ - 2015-04-07 - dupre - modifies .ignore * - 433 - `921b7df9 `_ - 2015-04-07 - dupre - add link to RSS feed, still an issue with some links * - 432 - `6176d66e `_ - 2015-04-06 - dupre - fix unit tests for travis * - 431 - `ca802c1c `_ - 2015-04-06 - dupre - update unit tests * - 430 - `72c70c75 `_ - 2015-04-05 - xavier dupré - encoding back to what it was * - 429 - `1b294248 `_ - 2015-04-05 - dupre - modifies encoding again * - 428 - `dc1348cb `_ - 2015-04-05 - dupre - change many encodings from utf8 to utf-8-sig when reading files * - 427 - `cc57fd54 `_ - 2015-04-05 - dupre - improve a message in a exception * - 426 - `a0e9304f `_ - 2015-04-05 - dupre - replace queue by Queue for python 2.7 * - 425 - `0ddff500 `_ - 2015-04-05 - dupre - update .ignore * - 424 - `6b54cfbf `_ - 2015-04-05 - dupre - finalize the generation of blog post inside the documentation (missing: sidebar + rss.xml) * - 422 - `61d2cfd9 `_ - 2015-04-05 - dupre - fix flake8 * - 421 - `b5c5831c `_ - 2015-04-05 - dupre - blog are processed, indexes has still to be improved * - 418 - `e3425f10 `_ - 2015-04-04 - dupre - add function to check cython existence * - 417 - `dfbae9bf `_ - 2015-04-04 - dupre - first step in processing blog post inserted in the documentation * - 416 - `e06659d4 `_ - 2015-04-04 - dupre - copy pdf output, add instructions in latex preamble * - 415 - `cae285a5 `_ - 2015-04-03 - dupre - add a file as an example for an extra file for documentation * - 414 - `a65bb156 `_ - 2015-04-02 - dupre - replace an exception by a warning, enable pdf help generation * - 413 - `a4558ee3 `_ - 2015-03-31 - dupre - better error messages + default option where generating latex (sphinx) * - 412 - `31819853 `_ - 2015-03-24 - dupre - more logging when uploading files * - 411 - `6482c07c `_ - 2015-03-23 - dupre - remove extra spaces * - 410 - `80cdd0e9 `_ - 2015-03-23 - dupre - check that file be removed (generated by the documentation) * - 409 - `bf488a74 `_ - 2015-03-23 - dupre - fix a bug introducted in a previous commit * - 408 - `6dc84acd `_ - 2015-03-23 - dupre - about jenkins build * - 407 - `422640e2 `_ - 2015-03-23 - dupre - about jenkins build * - 406 - `8c9f8ad6 `_ - 2015-03-23 - dupre - fix an import error * - 405 - `565d5311 `_ - 2015-03-23 - dupre - catches an exception, restart the generation to see if it removes errors when the documentation is generated from scratch * - 404 - `3cf80a1a `_ - 2015-03-22 - dupre - improve default_conv.py (when parameters have different types) * - 403 - `5512c3e4 `_ - 2015-03-21 - dupre - fix a bug introduced in the previous commits (function returning a different number of parameters) * - 402 - `2b36c69c `_ - 2015-03-21 - dupre - fix missing import * - 401 - `7c970293 `_ - 2015-03-21 - dupre - replace an exception by a warning * - 400 - `d630e948 `_ - 2015-03-21 - dupre - give more statistics on code, change default configuration for help generation * - 399 - `157f89be `_ - 2015-03-21 - dupre - fix a bug introducted in the two last commits * - 398 - `f1e4928d `_ - 2015-03-21 - dupre - improve a unit test * - 397 - `435c4550 `_ - 2015-03-21 - dupre - applies flake8 * - 396 - `428e2ee8 `_ - 2015-03-20 - dupre - add warnings when a file with an expected path is detected * - 395 - `0edfe907 `_ - 2015-03-20 - dupre - add function to update status of files within a folder * - 393 - `1ca0bac1 `_ - 2015-03-17 - dupre - update version_number before generating the setup * - 391 - `0ff3ca09 `_ - 2015-03-17 - dupre - improve class FtpTransfer * - 389 - `62e70ca6 `_ - 2015-03-16 - dupre - more logging when generating the documentation * - 388 - `a02a7522 `_ - 2015-03-12 - dupre - add helper for jenkins * - 387 - `28d0a134 `_ - 2015-03-07 - dupre - add notebook name when raising an exception during its execution * - 386 - `8b8830b3 `_ - 2015-03-07 - xavier dupré - add functionalities to adapt the code from python 3 to python 2 * - 385 - `eb5aea81 `_ - 2015-03-01 - dupre - fix import issue * - 384 - `6c42c166 `_ - 2015-03-01 - dupre - avoid evaluating arguments with choices in MagicParser * - 383 - `e336adf4 `_ - 2015-03-01 - dupre - also evalute expression such class.method in magic_parser.py * - 382 - `4a18741e `_ - 2015-03-01 - dupre - disable logging inside docstring2html * - 381 - `a98793a9 `_ - 2015-03-01 - dupre - allow more than two format for docstring2html * - 380 - `53e15cf6 `_ - 2015-03-01 - dupre - avoid the help to be displayed twice for a command magic * - 379 - `b17e0d2b `_ - 2015-03-01 - dupre - remove flag aggressive when using pep8 * - 378 - `e29519ac `_ - 2015-03-01 - dupre - update function has_x_server to make it work on windows * - 376 - `4c813a7d `_ - 2015-03-01 - dupre - update a function name, add suffix pep8 * - 375 - `85b8f895 `_ - 2015-03-01 - dupre - modify the setup syntax * - 374 - `1ec71090 `_ - 2015-03-01 - dupre - add autopep8 to the list of dependencies * - 373 - `8671a0dd `_ - 2015-03-01 - dupre - do not apply pep8 on big files * - 372 - `442ff3ba `_ - 2015-03-01 - dupre - applies autopep8 again * - 370 - `c844b92f `_ - 2015-02-28 - dupre - applies autopep8 on the module * - 369 - `c48888ed `_ - 2015-02-28 - dupre - remove documentation from travis build * - 368 - `0ccb19cb `_ - 2015-02-28 - dupre - remove unit tests building notebooks * - 367 - `12ca3f2a `_ - 2015-02-28 - dupre - remove two unit tests * - 366 - `9845f03d `_ - 2015-02-28 - dupre - remove one unit test * - 365 - `43ad3c1c `_ - 2015-02-28 - dupre - improve documentation * - 364 - `b60b30fa `_ - 2015-02-28 - dupre - run unit test when X server is not available * - 363 - `c5a528aa `_ - 2015-02-28 - dupre - remove warnings from the documentation generate by rst2html + update unit tests * - 362 - `526d8a7c `_ - 2015-02-28 - dupre - add function to display HTML help on a notebook * - 361 - `8f08de75 `_ - 2015-02-28 - dupre - update requirements * - 360 - `8b396fc7 `_ - 2015-02-28 - dupre - update requirements * - 359 - `e7ca9db2 `_ - 2015-02-28 - dupre - update requirements * - 358 - `08dbe7ae `_ - 2015-02-28 - dupre - update requirements * - 357 - `5e932f19 `_ - 2015-02-28 - dupre - update for travis * - 356 - `62892810 `_ - 2015-02-28 - dupre - add dependency on IPython, docutil * - 355 - `3f6d2fb2 `_ - 2015-02-28 - dupre - add travis.yml * - 354 - `80435369 `_ - 2015-02-28 - dupre - shortcuts * - 353 - `41de3f68 `_ - 2015-02-28 - dupre - increase unit test coverage * - 352 - `02ba69cf `_ - 2015-02-26 - dupre - improve documentation generation when importing modules to extract information about functions, classes... * - 351 - `781f5a5c `_ - 2015-02-24 - dupre - fix an issue while importing a module (do not import it, load the module) * - 349 - `46303554 `_ - 2015-02-23 - dupre - add function remove_diacritics * - 348 - `5a6d675e `_ - 2015-02-23 - dupre - fix an issue when generation the documentation for another project (reason is unclear) * - 347 - `645b5c39 `_ - 2015-02-23 - dupre - fix the same bug * - 346 - `f7bcd041 `_ - 2015-02-23 - dupre - fix a bug * - 345 - `bbdc021f `_ - 2015-02-23 - dupre - catch an exception, avoid generating documentation for a file not in a module * - 344 - `950748c4 `_ - 2015-02-22 - dupre - remove spaces * - 343 - `ba7d2a19 `_ - 2015-02-22 - dupre - better error message * - 342 - `1c63e176 `_ - 2015-02-22 - dupre - improve an error messae while generation the documentation * - 341 - `91a95fff `_ - 2015-02-22 - dupre - add trace information when generation the documentation * - 340 - `7139ad41 `_ - 2015-02-22 - dupre - fix import_pywin32 for WinPython * - 339 - `4633e38a `_ - 2015-02-21 - dupre - update publish_on_pypi.bat * - 338 - `688c244d `_ - 2015-02-19 - dupre - switch from fancybox to images, add a fix for Anaconda * - 337 - `7115ec4c `_ - 2015-02-19 - dupre - fix setup batch * - 336 - `7f8d8b76 `_ - 2015-02-17 - dupre - build the setup with any python distribution * - 335 - `f1d7b83f `_ - 2015-02-15 - dupre - catches exception when preprocessing file to publish * - 334 - `c21e7e7f `_ - 2015-02-15 - dupre - add possibility to add a footer or to preprocess a file before uploading it to the website * - 333 - `9d3fe553 `_ - 2015-02-14 - dupre - documentation + clean unnecessary methods * - 332 - `a16b721d `_ - 2015-02-14 - dupre - add class TransferFTP, FolderTransferFTP * - 331 - `a3c1fb07 `_ - 2015-02-13 - dupre - add parameter module_name to distinguish between folder name and module name (documentation generation) * - 330 - `a4bac2e8 `_ - 2015-02-05 - dupre - more comments and unit tests * - 329 - `3b190fd3 `_ - 2015-02-05 - dupre - add parameter skip_function to unit_tests.main * - 328 - `dadd57bb `_ - 2015-02-05 - dupre - modification for an empty notebook * - 327 - `7fdc0a6d `_ - 2015-02-05 - dupre - add logging function to run_notebook * - 326 - `993965ad `_ - 2015-02-05 - dupre - fix another issue in NbImage * - 325 - `40a4b553 `_ - 2015-02-05 - dupre - shorter path in NbImage * - 324 - `d5dd8b18 `_ - 2015-02-05 - dupre - improve robustness of notebook_runner, better error message, close ipython kernel * - 323 - `808f5e2f `_ - 2015-02-03 - dupre - better exception handling in notebook_runner * - 322 - `98635d35 `_ - 2015-02-03 - dupre - add parameter valid when running a notebook * - 321 - `fd1753cb `_ - 2015-02-03 - dupre - add function run_notebook to run a notebook end to end * - 320 - `b5a9f9f4 `_ - 2015-02-03 - dupre - improve str_to_datetime which converts a string into a date * - 319 - `99cb43d0 `_ - 2015-02-02 - dupre - change version number to 1.0 * - 318 - `800f8182 `_ - 2015-01-25 - dupre - shebang * - 317 - `e7acbf98 `_ - 2015-01-25 - dupre - fix release * - 316 - `662f7d47 `_ - 2015-01-22 - dupre - replace utf by utf8x in latex files before compiling documentation * - 315 - `fc3021b3 `_ - 2015-01-20 - dupre - documentation generation is more robust * - 314 - `1fb21680 `_ - 2015-01-19 - dupre - fix batch setup file * - 313 - `918ca5c5 `_ - 2015-01-19 - dupre - improve documentation generation, fix a bug in examples * - 312 - `f67724d7 `_ - 2015-01-19 - dupre - introduce a bug in a the documentation (has to be fixed later) * - 310 - `2f174be1 `_ - 2015-01-17 - dupre - small patches for documentation generation, run_cmd * - 309 - `4ac6234e `_ - 2015-01-17 - dupre - change \textquotesingle{} into ' when converting a notebook * - 308 - `849afc52 `_ - 2015-01-17 - dupre - rename a documentation file * - 307 - `6ceb8bb8 `_ - 2015-01-17 - dupre - documentation, setup modification * - 306 - `97de9836 `_ - 2015-01-17 - dupre - remove clean_pyd.py, move it to the setup * - 305 - `157173d9 `_ - 2015-01-16 - dupre - second fix for the building script * - 304 - `13c211ab `_ - 2015-01-16 - dupre - improve the building script * - 303 - `587895b6 `_ - 2015-01-05 - dupre - add class MagicClassWithHelpers + unit test + refactoring * - 302 - `21f75078 `_ - 2015-01-04 - dupre - use context by default in MagicCommandParser * - 301 - `1712440d `_ - 2015-01-04 - dupre - add a function to evaluate a string given a context * - 300 - `67f4e488 `_ - 2015-01-04 - dupre - mistake about shlex in setup.py * - 299 - `5482cc57 `_ - 2015-01-03 - dupre - add module shlex to the mandatory dependencies * - 298 - `0220366b `_ - 2015-01-03 - dupre - check files exist in zip7_files * - 297 - `bf7076ee `_ - 2015-01-03 - dupre - expose more function in __init__.py * - 296 - `f1838324 `_ - 2015-01-03 - dupre - add function zip7_files * - 295 - `607a29fc `_ - 2015-01-03 - dupre - documentation + expose more functions to __init__.py * - 294 - `6f69bb59 `_ - 2015-01-03 - dupre - remove unnecessary import * - 293 - `9aec79c3 `_ - 2015-01-03 - dupre - remove sync, move files to filehelper, add function download * - 292 - `bd0b8972 `_ - 2015-01-01 - dupre - add parameter fLOG to function run_cmd * - 289 - `b54a2cf2 `_ - 2014-12-31 - dupre - documentation, logging * - 288 - `4639c41e `_ - 2014-12-30 - dupre - add an extra checking while generating the documentation (due to encoding issue, otherwise it happens later in generate.py - sphinx) * - 287 - `b4e256f7 `_ - 2014-12-30 - dupre - another fix, missing module * - 286 - `af6219f4 `_ - 2014-12-30 - dupre - fix another unit tests failing due to pymyinstall * - 285 - `092a4f0e `_ - 2014-12-30 - dupre - fix a unit tests requiring pymyinstall * - 284 - `1dec2c00 `_ - 2014-12-30 - dupre - add set_sphinx_variables to factorize sphinx configuration over several projects * - 283 - `fc470c81 `_ - 2014-12-30 - dupre - add weeks with zero commits * - 282 - `82682f68 `_ - 2014-12-30 - dupre - fix the labels of the graph showing changes over weeks * - 281 - `a597b802 `_ - 2014-12-29 - dupre - remove extra space * - 280 - `c327e88d `_ - 2014-12-29 - dupre - add graph about changes * - 279 - `49e04433 `_ - 2014-12-28 - dupre - first version a class wrapping Git Lab API * - 278 - `9d973161 `_ - 2014-12-28 - dupre - expose more function in the main file __init__.py * - 277 - `1556b892 `_ - 2014-12-19 - dupre - remove an extra line in the documentation * - 276 - `bc9e3473 `_ - 2014-12-19 - dupre - process a form * - 275 - `b33a4d31 `_ - 2014-12-17 - dupre - add parameter processes * - 274 - `80b749c5 `_ - 2014-12-16 - sdpython - add function to clone or rebase a folder * - 273 - `a5b4d21f `_ - 2014-12-15 - sdpython - quick fix again for latex * - 272 - `05d4427f `_ - 2014-12-14 - sdpython - remove extra spaces * - 271 - `cc577ea7 `_ - 2014-12-14 - xavier dupré - add a missing latex package * - 270 - `7825ca92 `_ - 2014-12-14 - sdpython - fix a latex issue again * - 269 - `1e5bf02e `_ - 2014-12-13 - sdpython - more explicit error message * - 268 - `cb7fb440 `_ - 2014-12-13 - sdpython - remove empty __init__.py * - 267 - `5851ad75 `_ - 2014-12-13 - sdpython - add statistics on code (number of lines, number of files) * - 266 - `2e460614 `_ - 2014-12-12 - sdpython - better time estimation * - 265 - `0fcecc33 `_ - 2014-12-12 - sdpython - better error message * - 264 - `3e7f84ac `_ - 2014-12-12 - sdpython - dirty fix to avoid crashing when compiling the document with comments for commit changes which include $ * - 263 - `41fc01e4 `_ - 2014-12-11 - sdpython - add tableofcontents in latex files * - 262 - `bd88e0d4 `_ - 2014-12-11 - sdpython - fix the previous commit which was incomplete: variable compilation was not set up in every path * - 261 - `3f49b5fc `_ - 2014-12-11 - sdpython - improve the conversion of notebook into HTML (still in progress) * - 260 - `8d0850f3 `_ - 2014-12-11 - sdpython - better error message * - 259 - `0b9d7a3c `_ - 2014-12-11 - sdpython - fixing an issue while compiling latex (not really a good solution) * - 258 - `21826b56 `_ - 2014-12-10 - sdpython - improve some error messages * - 257 - `5cba1403 `_ - 2014-12-10 - sdpython - same previous fix * - 256 - `81443b40 `_ - 2014-12-10 - sdpython - quick fix just to check it is working * - 255 - `492fee89 `_ - 2014-12-10 - sdpython - quick fix, should be modified in a more robust way later * - 254 - `248b84ea `_ - 2014-12-10 - sdpython - skip a latex error caught up later on in the process * - 253 - `d8c744d8 `_ - 2014-12-10 - sdpython - skip notebook generation even if the output format is docx (it was not the case) + others small modications * - 252 - `d2d5f332 `_ - 2014-12-09 - sdpython - add a quick fix to stop processing a notebook if \$ is found * - 251 - `795c2b09 `_ - 2014-12-06 - sdpython - fix the setup * - 250 - `33d08e07 `_ - 2014-12-06 - sdpython - remove extra spaces * - 249 - `2c047fc5 `_ - 2014-12-06 - sdpython - close the server after shutdown (and close the socket) * - 248 - `68223fb3 `_ - 2014-12-06 - sdpython - add parameter skip_list, catch warnings when running unit tests * - 246 - `8414519e `_ - 2014-12-06 - sdpython - fix a link which make the documentation fails * - 243 - `789aca79 `_ - 2014-12-06 - sdpython - catch more errors when building the documentation * - 242 - `06d569f4 `_ - 2014-12-06 - sdpython - move some repeated code inside the module * - 241 - `77c02107 `_ - 2014-12-06 - sdpython - fix the build and check it on jenkins * - 240 - `7f1bc340 `_ - 2014-12-06 - sdpython - make the build fails for jenkins * - 239 - `3fed112d `_ - 2014-12-06 - sdpython - another try 2 * - 238 - `19b18f2e `_ - 2014-12-06 - sdpython - another try * - 237 - `9dc98cdf `_ - 2014-12-06 - sdpython - modification to check the previous one * - 236 - `3acfa41e `_ - 2014-12-06 - sdpython - introduce a failure to tst jenkins build automation * - 235 - `a85eb6e7 `_ - 2014-12-06 - sdpython - avoid returning None in a function find_latex * - 234 - `37408031 `_ - 2014-12-06 - sdpython - look into %PATH% for graphviz, pandoc, latex * - 233 - `35a20486 `_ - 2014-12-06 - sdpython - better behavior of the unit test * - 232 - `bae1291f `_ - 2014-12-06 - xavier dupré - fix graphviz path in conf.py * - 230 - `19dfee93 `_ - 2014-12-05 - xavier dupré - spaces * - 229 - `b75bf7a3 `_ - 2014-12-05 - sdpython - write the errors on stderr after running the unit tests * - 226 - `0c13c564 `_ - 2014-11-27 - sdpython - fix a bug in run_cmd (when sin is None) * - 225 - `f0932348 `_ - 2014-11-25 - sdpython - remove line number on notebooks because it is more difficult to read * - 224 - `459d1134 `_ - 2014-11-23 - sdpython - add MagicCommandParser * - 223 - `4120bba2 `_ - 2014-11-23 - azure provisioned user - Merge branch 'master' of https://github.com/sdpython/pyquickhelper * - 222 - `2a2d8f42 `_ - 2014-11-23 - azure provisioned user - improve an error message * - 221 - `dcce51b3 `_ - 2014-11-23 - sdpython - fix a failing unit test * - 220 - `c28d11ac `_ - 2014-11-23 - sdpython - fix function NbImage * - 219 - `1d6b4b71 `_ - 2014-11-23 - sdpython - add a function to retrieve an image from github instead of using the local paths * - 218 - `54469945 `_ - 2014-11-23 - sdpython - add an image to a notebook * - 217 - `77ce7701 `_ - 2014-11-23 - azure provisioned user - update pathfor the notebooks and documentation (linux) * - 216 - `0555f7da `_ - 2014-11-23 - azure provisioned user - compile the documentation on linux, check the notebooks are working on this environnement * - 215 - `71bee87b `_ - 2014-11-20 - sdpython - add parameter timeout in run_cmd and fix the stdin issue * - 214 - `a5e0c42e `_ - 2014-11-17 - sdpython - fix mathjax links for HTML conversion * - 212 - `41102231 `_ - 2014-11-15 - sdpython - remove the weird character on pypi * - 210 - `117f3e88 `_ - 2014-11-15 - sdpython - add callback function when showing a form on a notebook * - 209 - `b6ba7810 `_ - 2014-11-15 - sdpython - raise an exception if unexpected keys in open_html_form * - 208 - `cd6558f0 `_ - 2014-11-15 - sdpython - documentation and html design * - 207 - `604760cb `_ - 2014-11-15 - sdpython - add function open_html_form to create a form on a notebook * - 205 - `dc9d0278 `_ - 2014-11-09 - sdpython - fix the setup (cannot find readme.rst) * - 203 - `1e82c545 `_ - 2014-11-08 - sdpython - fix an issue when removing empty spaces * - 202 - `1a5580a9 `_ - 2014-11-08 - sdpython - various typo, misspelling, small bugs * - 201 - `9485dee6 `_ - 2014-11-08 - sdpython - remove empty lines at the end of every scripts * - 200 - `dbaada87 `_ - 2014-11-08 - sdpython - remove extra space in files .bat, .sh * - 199 - `b2581a0a `_ - 2014-11-08 - sdpython - remove extra spaces in all files * - 198 - `468370a0 `_ - 2014-11-08 - sdpython - fix bugs in remove_extra_spaces_folder * - 197 - `424610b8 `_ - 2014-11-08 - sdpython - add function remove_extra_spaces_folder to remove spaces in all files a a folder * - 196 - `69340b09 `_ - 2014-11-08 - sdpython - add a function to remove extra spaces in a file * - 195 - `da5a734d `_ - 2014-11-08 - sdpython - fix spelling in the setup, merge a pull request * - 194 - `0f328f3e `_ - 2014-11-07 - ped4747 - Update README.rst * - 192 - `0e504c32 `_ - 2014-11-03 - sdpython - parameter password1, password2, password3 are also hidden with stars (open_window_params) * - 191 - `d43f4966 `_ - 2014-11-02 - sdpython - improves the conversion of notebooks into RST files * - 190 - `15e34b07 `_ - 2014-11-01 - sdpython - move fix div in a notebook to the right * - 189 - `64f10a05 `_ - 2014-10-31 - sdpython - replace a bullet list by a single line when converting notebooks * - 188 - `496c4605 `_ - 2014-10-31 - sdpython - avoid a bad path (with ..) to happen (doc server) * - 187 - `472643e1 `_ - 2014-10-31 - sdpython - better handling of missing files for doc server * - 186 - `79a8cee1 `_ - 2014-10-31 - sdpython - add a default page to show the mappings + add a simple cache mechanism to the simple doc server * - 185 - `8eb019c4 `_ - 2014-10-30 - sdpython - add a named label for every example and FAQ item * - 183 - `e326a9e9 `_ - 2014-10-30 - sdpython - improve docserver, checks the IE layout * - 182 - `c22d7afd `_ - 2014-10-29 - sdpython - add unit test coverage in the documentation * - 181 - `042e39e5 `_ - 2014-10-28 - sdpython - fix a bug in documentation_server.py preventing the search page to be working * - 180 - `06a85fbc `_ - 2014-10-28 - sdpython - add function run_doc_server to serve documentation * - 179 - `1c2dba92 `_ - 2014-10-28 - sdpython - data for a unit test * - 178 - `6e96746f `_ - 2014-10-25 - sdpython - add a test to check python version * - 176 - `4e9951d2 `_ - 2014-10-20 - azure provisioned user - add script to compilte the documentation on linux * - 175 - `0c094722 `_ - 2014-10-19 - azure provisioned user - notebook compilation into html on ubuntu * - 174 - `11667eb9 `_ - 2014-10-19 - azure provisioned user - modification to make it work on linux, last one: pandoc * - 169 - `96677742 `_ - 2014-10-17 - sdpython - fix a bug which happened after an import exception * - 168 - `18a8d930 `_ - 2014-10-17 - sdpython - fix rst links issues introduced by the non replacement of relative imports * - 167 - `9a073195 `_ - 2014-10-16 - sdpython - remove the replacement of the relative imports * - 166 - `8b5085bc `_ - 2014-10-12 - sdpython - add basic checking * - 165 - `d1f2d503 `_ - 2014-10-11 - sdpython - better help generation, still a bug to be fixed * - 164 - `90e1ba81 `_ - 2014-10-10 - sdpython - fix a failing unittest (replacd file name by normalized paths) * - 163 - `6f1ff33b `_ - 2014-10-10 - sdpython - fix a bug while generating the documentation, the wrong module could be imported by function import_module * - 161 - `4e2559c3 `_ - 2014-09-25 - sdpython - theme change for the documentation * - 160 - `2a9a4775 `_ - 2014-09-24 - sdpython - change version number to commit number * - 158 - `754bde51 `_ - 2014-09-20 - sdpython - add the possibility to ignore some file parts while generation the documentation * - 157 - `22c687cf `_ - 2014-09-20 - sdpython - fix misspelling again * - 156 - `dcb2459e `_ - 2014-09-20 - sdpython - fix misspelling and minor bugs * - 155 - `862125c5 `_ - 2014-09-06 - sdpython - fix a few bug while generating the documentation (notebook were not up to date) * - 154 - `bcafc663 `_ - 2014-08-29 - sdpython - fix another issues with encodings while synchronizing folders * - 153 - `b3aca535 `_ - 2014-08-29 - sdpython - fix an encoding issue + avoid raising an exception in one particular case * - 152 - `af6432e4 `_ - 2014-08-28 - sdpython - fix a bug while getting content using git (the solution is still not perfect) * - 149 - `32b59456 `_ - 2014-08-24 - sdpython - second fix for the previous bug * - 148 - `622c5fa9 `_ - 2014-08-24 - sdpython - fix a package issue when converting a notebook into latex * - 147 - `477968f0 `_ - 2014-08-22 - sdpython - add conversion from ipynb to docx * - 146 - `bbe57d6f `_ - 2014-08-19 - sdpython - minor change, no impact * - 145 - `9f9a64fd `_ - 2014-08-18 - sdpython - encoding * - 142 - `ebbdd3cb `_ - 2014-08-05 - sdpython - auto completion for IPython * - 141 - `fdb38ca4 `_ - 2014-08-03 - sdpython - cleaning a file * - 140 - `20d636eb `_ - 2014-08-01 - sdpython - add two function to detect empty string in pandas tables * - 139 - `948f1951 `_ - 2014-07-27 - sdpython - fix a path in help documentation * - 137 - `868a4785 `_ - 2014-07-27 - sdpython - fix the latest bug when producing multiple layout for the same package * - 136 - `dba267f3 `_ - 2014-07-27 - sdpython - still an issue with the cleaning * - 135 - `e7012417 `_ - 2014-07-27 - sdpython - remove unnecessary files, modifies the clean option when generating help * - 134 - `461a88b3 `_ - 2014-07-26 - sdpython - allow multiple layout for the help generation * - 133 - `2a211fb0 `_ - 2014-07-20 - sdpython - fix a bug in notebook conversion to rst (issue with automated label) * - 132 - `82156e3a `_ - 2014-07-19 - sdpython - improve the conversion of notebooks to rst format * - 131 - `72c23b7d `_ - 2014-07-19 - sdpython - check the setup installation * - 130 - `45709dc9 `_ - 2014-07-18 - sdpython - extend setup.py functionalities (unittest, build_sphinx) * - 129 - `d83cded9 `_ - 2014-07-18 - sdpython - fix image path while converting notebooks * - 128 - `b3e744e2 `_ - 2014-07-18 - sdpython - add function noLOG * - 127 - `a1ff6b35 `_ - 2014-07-16 - sdpython - add function read_url * - 126 - `07418e6f `_ - 2014-07-15 - sdpython - avoid two fixes to contradict themselves * - 125 - `3a8f9b5f `_ - 2014-07-15 - sdpython - fix some issues with image path * - 124 - `a7a9a837 `_ - 2014-07-15 - sdpython - improve automated documentation for notebooks * - 123 - `7cbe636a `_ - 2014-07-14 - sdpython - improve conversion from notebook to RST * - 122 - `a9dedc70 `_ - 2014-07-14 - sdpython - improve conversion from notebook to PDF * - 120 - `72fe022b `_ - 2014-07-14 - sdpython - refactoring * - 119 - `fa2d42a9 `_ - 2014-07-14 - sdpython - add function get_url_content * - 118 - `3cec76ac `_ - 2014-07-14 - sdpython - consider subfolders when compiling notebooks in the documentation * - 116 - `55de90ec `_ - 2014-07-06 - sdpython - remove the checkpoints from the notebooks to add to the documentation * - 115 - `b33581b4 `_ - 2014-07-02 - sdpython - move unecessary lines * - 114 - `c5e1b072 `_ - 2014-07-02 - sdpython - fix an issue with pywin32, improve the generation of the documentation with the latest version of ipython * - 113 - `8be405a2 `_ - 2014-06-18 - sdpython - +msi * - 112 - `0ee91e0a `_ - 2014-06-15 - sdpython - copy images from the notebooks folder to the documentation folder * - 111 - `b5a7a1aa `_ - 2014-06-03 - sdpython - add version number of __init__.py * - 110 - `a498618f `_ - 2014-05-27 - sdpython - reduce the number of warnings while generating the documentation * - 109 - `0de65ac6 `_ - 2014-05-27 - sdpython - fix an issue with accent in example pages * - 108 - `1404f447 `_ - 2014-05-27 - sdpython - bug fix (missing some pages in documentation because of a space) * - 107 - `e1f7e147 `_ - 2014-05-27 - sdpython - remove the creation of temp_log.txt by default * - 106 - `a73d502b `_ - 2014-05-23 - sdpython - fix some case issues * - 105 - `0df849d8 `_ - 2014-05-22 - sdpython - add a shortcut to __init__.py * - 104 - `7244cb68 `_ - 2014-05-22 - sdpython - add a shortcut to __init__.py * - 103 - `948cb710 `_ - 2014-05-21 - sdpython - better error message + fix an encoding issue * - 102 - `bdb5d4a1 `_ - 2014-05-21 - sdpython - replace encoding latin-1 by itf-8 * - 100 - `1234d49f `_ - 2014-05-14 - sdpython - comment * - 99 - `46dd8858 `_ - 2014-05-12 - sdpython - Revert "until I find something better" * - 98 - `ea9fad84 `_ - 2014-05-11 - sdpython - until I find something better * - 97 - `0ecca053 `_ - 2014-05-11 - sdpython - avoid compiling notebooks again if the last compilation is more recent than the file to compile * - 96 - `faf9f249 `_ - 2014-05-09 - sdpython - stuck sometimes, unstuck it * - 95 - `a0036bd0 `_ - 2014-05-06 - sdpython - make it easy to change print into something else for logging * - 94 - `6cae131a `_ - 2014-05-06 - sdpython - add latex packages before compiling the documentation into PDF * - 92 - `58bf3875 `_ - 2014-05-02 - sdpython - add pdf compilation of the help * - 91 - `ffc82dfb `_ - 2014-05-01 - sdpython - fix an issue while assigning ids to example and FAQ * - 88 - `97cc36df `_ - 2014-04-30 - sdpython - improve help generation around snippets of code + unit test * - 87 - `569ce1d4 `_ - 2014-04-30 - sdpython - allows several pages of FAQ: FAQ(page__question) * - 86 - `70c78587 `_ - 2014-04-26 - sdpython - catches an exception in fLOG * - 85 - `d6e019bf `_ - 2014-04-26 - sdpython - fix an encoding issue * - 83 - `e1003f86 `_ - 2014-04-26 - sdpython - fix an issue with the encodings of the repo changes while generating documentation * - 82 - `723903d4 `_ - 2014-04-26 - sdpython - remove author and improve title when generating PDF from notebooks * - 79 - `4b4ae760 `_ - 2014-04-26 - sdpython - improve the documentation generation, add toctrees * - 78 - `11653060 `_ - 2014-04-24 - sdpython - cleaning an unused file * - 77 - `16ecb349 `_ - 2014-04-24 - sdpython - improve toctree for the documentation generation * - 76 - `5e56c1bd `_ - 2014-04-24 - sdpython - improve documentation generation (notebooks empty lines) * - 75 - `36641e3e `_ - 2014-04-22 - sdpython - remove a character from a rst label * - 72 - `30003c52 `_ - 2014-04-21 - sdpython - fix a bug about a missing path * - 70 - `55c272ca `_ - 2014-04-20 - sdpython - add a trick to fix image path when they contain a space (only for notebooks) * - 69 - `d845912f `_ - 2014-04-20 - sdpython - fix a path * - 67 - `8f8f6c93 `_ - 2014-04-20 - sdpython - change documentation theme * - 66 - `51a83caf `_ - 2014-04-19 - sdpython - fix the script building the documentation and setup * - 65 - `3aad549a `_ - 2014-04-19 - sdpython - add notebook while generation the documentation * - 64 - `dd85b1d2 `_ - 2014-04-19 - sdpython - update gitignore to avoid adding notebooks * - 63 - `ca80bbbb `_ - 2014-04-19 - sdpython - remove too many empty lines when running run_cmd * - 62 - `d5cb5da4 `_ - 2014-04-19 - sdpython - avoid printing tooo many lines of logs on console * - 61 - `2b62cc11 `_ - 2014-04-19 - sdpython - moving the notebooks * - 60 - `f93764d5 `_ - 2014-04-18 - sdpython - add a notebook * - 58 - `412ffd4d `_ - 2014-04-18 - sdpython - change default values in run_cmd, extend an error message * - 57 - `5c23c957 `_ - 2014-04-12 - sdpython - fix index, labels for the help generation * - 56 - `8eb8e9a8 `_ - 2014-04-12 - sdpython - add the possibility to create more than one page of examples (use ___ as a separator) * - 54 - `372e8520 `_ - 2014-04-06 - sdpython - update function synchronize_folder to remove file when using a status_file to look for modifications * - 53 - `63b4fbbb `_ - 2014-04-06 - sdpython - more robust function run_cmd, unzip * - 52 - `910265e5 `_ - 2014-04-06 - sdpython - update version + read version from setup.py for documentation * - 51 - `f321d19d `_ - 2014-03-30 - sdpython - adjust the code to deal with the case of sys.stdout == None * - 50 - `91f8b43b `_ - 2014-03-30 - sdpython - fix an issue while converting strings to datetime (with symbol -) * - 49 - `d8790acf `_ - 2014-03-22 - sdpython - handle in a better way keys when using open_window_params * - 47 - `d8777746 `_ - 2014-03-18 - sdpython - remove unnecessary lines * - 46 - `75036c56 `_ - 2014-03-18 - sdpython - migration to python 3.4 * - 45 - `3791bbb8 `_ - 2014-03-17 - sdpython - fix a few bugs about folder synchronization * - 44 - `6aa1503a `_ - 2014-03-16 - sdpython - change the version * - 43 - `52209094 `_ - 2014-03-16 - sdpython - add logging information while synchronizing big folders * - 42 - `20837b46 `_ - 2014-03-16 - sdpython - add missing file __init__.py * - 40 - `cd3dce1d `_ - 2014-03-16 - sdpython - update the setup, documentation * - 39 - `553c621d `_ - 2014-03-16 - sdpython - tkinter window to easily enter parameters * - 38 - `cad05d9b `_ - 2014-03-14 - sdpython - use hash before copying files (folder synchronization) * - 37 - `41178067 `_ - 2014-03-06 - sdpython - improve the default behaviour when generating help for a non-python file * - 36 - `e2525854 `_ - 2014-03-04 - sdpython - fix issues with others extension during help generation * - 35 - `bdf9f0d1 `_ - 2014-03-04 - sdpython - some fixes for the help generation * - 34 - `de84d87c `_ - 2014-03-02 - sdpython - add parameter extra_ext to include others file extension in documentation * - 33 - `d47cc56b `_ - 2014-02-26 - sdpython - version modification in the setup * - 32 - `db5da145 `_ - 2014-02-24 - sdpython - add a unit test and fix sync function * - 31 - `974ed290 `_ - 2014-02-24 - sdpython - another file for unit test purpose * - 30 - `fa171a51 `_ - 2014-02-24 - sdpython - add a file for unit test purpose * - 29 - `147e5621 `_ - 2014-02-20 - sdpython - comment * - 28 - `4101d6c2 `_ - 2014-02-17 - sdpython - fix indentation issues when generating the documentation * - 27 - `b86df72f `_ - 2014-02-17 - sdpython - fix sphinx indentation for tags example, FAQ * - 26 - `14712468 `_ - 2014-02-16 - sdpython - fix an issue about indentation when generating the example and FAQ section * - 25 - `ba0c3d6e `_ - 2014-02-16 - sdpython - add references when gathering examples and questions * - 24 - `17017a6a `_ - 2014-02-16 - sdpython - improve help generation, process page to extract examples and FAQ * - 23 - `d619abdf `_ - 2014-02-10 - sdpython - change version number * - 22 - `281fe532 `_ - 2014-02-10 - sdpython - use the new introduced parameter in get_repo_version_ * - 21 - `5053b74d `_ - 2014-02-10 - sdpython - change the version number returned by pygit_hlper * - 20 - `c4ce311f `_ - 2014-02-08 - sdpython - clean the code after applying pylint * - 19 - `afe55f54 `_ - 2014-02-07 - sdpython - add an option to parameter align when formatting a table in rst format * - 18 - `e1aba5d2 `_ - 2014-02-07 - sdpython - add alignment options when building rst format for a table * - 17 - `280a9f65 `_ - 2014-02-07 - sdpython - add link to commit on the documentation * - 16 - `0364c3c1 `_ - 2014-02-06 - sdpython - add a function to filter commit to add to the documentation * - 15 - `dbb54b3a `_ - 2014-02-06 - sdpython - documentation and setup can be now generated using GitHub * - 14 - `a62330e5 `_ - 2014-02-06 - sdpython - first update to fix the generation of the documentation using Git * - 13 - `6d10a4df `_ - 2014-02-06 - sdpython - fix a unit test which uses to depend on another project * - 12 - `7617b0b5 `_ - 2014-02-06 - sdpython - pyquickhelper: first step in using GIT as source repository * - 11 - `f0af509e `_ - 2014-02-06 - sdpython - remove unused files + change setup * - 10 - `8d5351d1 `_ - 2014-02-01 - sdpython - fix the search page on documentation * - 9 - `1270d708 `_ - 2014-02-01 - sdpython - improve the documentation * - 8 - `58277e1e `_ - 2014-01-30 - sdpython - add run_cmd to __init__.py, changed icon * - 7 - `5205d361 `_ - 2014-01-24 - sdpython - adding a function to quickly visualize differences between two files * - 4 - `20df58e5 `_ - 2013-12-28 - sdpython - adding function df_to_html * - 3 - `2ed70b97 `_ - 2013-12-28 - sdpython - improving the help generation, moving functions from make_help to helpgen/sphinx_main * - 2 - `92c35828 `_ - 2013-12-28 - sdpython - fixing an issue while converting pandas dataframe into rst format * - 1 - `b94d02d8 `_ - 2013-12-28 - sdpython - first version, doc, unit test, setup