-
The plot_directive.py file processes the sphinx version as:
sphinx_version = sphinx.__version__.split(".")
sphinx_version = tuple([int(x) for x in sphinx_version[:2]])
This fails with development versions sphinx.__version__ = '0.6b1' for example. A possible fix is:
sphinx_version = sphinx.__version__.replace("b", ".").split(".")
sphinx_version = tuple([int(x) for x in...
2009-03-18 20:52:49 UTC in matplotlib
-
I am not sure if swig should be run by setup.py but in any case, the required swig-generated file pygsl/sum.py is not included in the distribution, nor is swig called when setup.py is run.
It seems that the swig generated sum.py file should just be included in the pygsl/directory in the distribution.
Thanks,
Michael.
2009-01-16 01:28:50 UTC in pygsl python interface for GNU scientifi
-
If granted write access to the repo, I will commit these if everyone is happy with them.
2008-10-10 02:23:02 UTC in pygsl python interface for GNU scientifi
-
Please find attached a patch for the pygsl.sum module, including documentation, examples and tests. I have exposed a single function levin_sum(a, truncate=False, info_dict): which allows the user to choose between the two GSL functions with the truncate flag.
Attached is a patch with the diffs for the changed files and two new files:
README
TODO
setup.py
doc/ref/ref.tex
doc/ref/sum.tex...
2008-10-10 02:20:26 UTC in pygsl python interface for GNU scientifi
-
I am having the same problem with all versions of Skim 1.1.* on OS X 10.4.11.
Version 1.0.3 (V21) of Skim works fine in this respect, so it is not just a problem with PDFKit (unless the older versions of Skim had a workaround, in which case, please use the same workaround now so that functionality is preserved;-)
2008-04-01 23:38:51 UTC in Skim PDF Reader and Note-taker for OS X
-
Duplicate of 1911637.
2008-03-28 02:15:09 UTC in Skim PDF Reader and Note-taker for OS X
-
Creating a "New From Clipboard" image from a copied clipping has some issues in version 1.1.1 (v23) on Tiger (10.4.11).
The resulting new file certainly has the wrong proportions (seems that the overall size is the same as the original document rather than sizing to the clip) and the clip is severely shifted. (Seems like the bounding box, paper size, and offset are problematic).
2008-03-28 02:12:12 UTC in Skim PDF Reader and Note-taker for OS X
-
Same as Feature Request 1805597.
2007-10-03 07:12:11 UTC in Skim PDF Reader and Note-taker for OS X
-
If one closes the Contents Pane, then clicks "Use Current View Settings as Defulat", the setting is not remembered. The next time a document is open, the Contents Pane is opened again.
This behaviour just started with the latest update to Version 0.9.2 (v14).
2007-10-03 07:06:12 UTC in Skim PDF Reader and Note-taker for OS X
-
Patch is for lib/matplotlib/axes.py if that was not obvious.
2007-06-06 17:05:57 UTC in matplotlib