Skip to content

Releases: jsolbrig/argdoc

v0.1.3_b1

07 Nov 08:52
Compare
Choose a tag to compare

Large rework of code to use inspect.signature rather than inspect.getargspec. This is largely untested on Python 2, but works well on Python 3. There may be some issues with argument order on Python 2, but more testing is needed to be sure.

Major Changes:

  • Based on inspect.signature rather than inspect.getargspec
  • Second internal class added to allow handling of documentation that cannot be obtained via introspection
    • An example of this is indicating which errors may be raised and under which conditions

v0.1.2

06 Nov 22:07
Compare
Choose a tag to compare

This finalizes the changes made in v0.1.2_b1.

v0.1.2_b1

06 Nov 21:59
Compare
Choose a tag to compare
v0.1.2_b1 Pre-release
Pre-release

Beta release:

  • Fixing setup.py to correctly produce source distributions with code included
    • Had been leaving source code out
    • Updated to use "packages" rather than "py_modules" in setup.py
  • Get version numbers from setup.py within Sphinx config.py

v0.1.1

06 Nov 00:16
Compare
Choose a tag to compare

This is the first fully-functional version of ArgDoc. It includes support for both Google and Numpy style docstrings and will be released on PYPI.

Changes since last release

  • First real working version
  • First release to PYPI
  • Reworked package organization
  • Added versioning
  • Completed setup.py
  • Added PYPI information to setup.py

v0.1.0

02 Nov 19:04
bf77a91
Compare
Choose a tag to compare

The first release of ArgDoc. This release provides the ability to insert both Google and Numpy formatted argument and keyword lists into decorated docstrings.