Skip to content

Commit

Permalink
Fix docs yet again
Browse files Browse the repository at this point in the history
  • Loading branch information
nielstron committed Sep 8, 2021
1 parent 24464fb commit adfdb58
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 152 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.idea
docs/html

*~
*.py[co]
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ docs/$(MODULE).txt: $(MODULE).py
python -m pydoc $(MODULE) | sed -e 's|/home/[a-zA-Z0-9_/.-]*/git/demjson/||' >docs/$(MODULE).txt

docs/$(MODULE).html: $(MODULE).py
$(PYDOC) --html $(MODULE) -o docs/html
mv docs/html/$(MODULE).html docs/html/index.html
$(PYDOC) --html $(MODULE) -o docs
mv docs/$(MODULE).html docs/index.html
146 changes: 0 additions & 146 deletions README.txt

This file was deleted.

4 changes: 2 additions & 2 deletions demjson3.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@
__homepage__ = "http://nielstron.github.io/demjson3/"

__date__ = "2021-09-08"
__version__ = "3.0.4"
__version_info__ = (3, 0, 4) # Will be converted into a namedtuple below
__version__ = "3.0.5"
__version_info__ = (3, 0, 5) # Will be converted into a namedtuple below

__credits__ = """Copyright (c) 2006-2021 Deron E. Meranda <http://deron.meranda.us/>, Niels Mündler
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Python package setup script -*- coding: utf-8 -*-

name = "demjson3"
version = "3.0.4"
version = "3.0.5"

from setuptools import setup

Expand Down

0 comments on commit adfdb58

Please sign in to comment.