IPython 7.7.0 contain multiple bug fixes and documentation updates; Here are a few of the outstanding issue fixed: - Fix a bug introduced in 7.6 where the ``%matplotlib`` magic would fail on previously acceptable arguments - Fix the manage location on freebsd - Fix error message about aliases after ``%reset`` call in ipykernel - Fix Duplication completions in emacs We are planning to adopt `NEP29 <https://github.com/numpy/numpy/pull/14086>`_ (still currently in draft) which may make this minor version of IPython the last one to support Python 3.5 and will make the code base more aggressive toward removing compatibility with older versions of Python. GitHub now support to give only "Triage" permissions to users; if you'd like to help close stale issues and labels issues please reach to us with your GitHub Username and we'll add you to the triage team. It is a great way to start contributing and a path toward getting commit rights.
18 lines
577 B
Python
18 lines
577 B
Python
$NetBSD: patch-setupbase.py,v 1.3 2019/08/03 12:31:47 adam Exp $
|
|
|
|
Honor PKGMANDIR
|
|
|
|
--- setupbase.py.orig 2019-07-26 21:57:01.000000000 +0000
|
|
+++ setupbase.py
|
|
@@ -162,10 +162,7 @@ def find_data_files():
|
|
Just man pages at this point.
|
|
"""
|
|
|
|
- if "freebsd" in sys.platform:
|
|
- manpagebase = pjoin('man', 'man1')
|
|
- else:
|
|
- manpagebase = pjoin('share', 'man', 'man1')
|
|
+ manpagebase = pjoin(os.environ.get('PKGMANDIR'), 'man1')
|
|
|
|
# Simple file lists can be made by hand
|
|
manpages = [f for f in glob(pjoin('docs','man','*.1.gz')) if isfile(f)]
|