Skip to content

Commit dc755bd

Browse files
Doc update (#31)
* DOC: Added whatsnew * DOC: updates * DOC: updates
1 parent c5999c6 commit dc755bd

File tree

6 files changed

+22
-2
lines changed

6 files changed

+22
-2
lines changed

docs/source/_static/.gitignore

Whitespace-only changes.

docs/source/api.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ Dedicated alternate constructors are also available.
1919
.. automethod:: IPArray.from_pyints
2020
.. automethod:: IPArray.from_bytes
2121

22+
Finally, the top-level ``ip_range`` method can be used.
23+
24+
.. autofunction:: ip_range
25+
2226
Serialization
2327
"""""""""""""
2428

@@ -63,5 +67,5 @@ IP addresss-specific attributes.
6367

6468
:class:`MACArray`
6569
-----------------
66-
70+
utofun
6771
.. autoclass:: MACArray

docs/source/changelog.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#########
2+
Changelog
3+
#########
4+
5+
*************
6+
Version 1.1.0
7+
*************
8+
9+
- Added :func:`ip_range` for generating an array of regularly-spaced IP addresses (:issue:`27`).
10+
- Added :meth:`IPArray.netmask` and :meth:`IPArray.hostmask` (:issue:`30`).
11+
- Fixed Python 2 dependencies so that the `ipaddress` backport is installed automatically when install cyberpandas from PyPI (:issue:`29`).

docs/source/conf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
'sphinx.ext.autosummary',
3737
'sphinx.ext.doctest',
3838
'sphinx.ext.intersphinx',
39+
'sphinx.ext.extlinks',
3940
'numpydoc',
4041
'IPython.sphinxext.ipython_console_highlighting',
4142
'IPython.sphinxext.ipython_directive',
@@ -169,6 +170,9 @@
169170
'pandas': ('http://pandas-docs.github.io/pandas-docs-travis/', None),
170171
}
171172

173+
extlinks = {
174+
'issue': ('https://github.com/dask/dask-ml/issues/%s', 'GH#'),
175+
}
172176

173177
ipython_execlines = [
174178
"import ipaddress",

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ API
6060
install.rst
6161
usage.rst
6262
api.rst
63+
changelog.rst
6364

6465

6566

docs/source/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ Once pandas is installed, cyberpandas can be installed from conda-forge::
88

99
conda install -c conda-forge cyberpandas
1010

11-
Or PyPI:
11+
Or PyPI::
1212

1313
pip install cyberpandas

0 commit comments

Comments
 (0)