Skip to content
This repository has been archived by the owner on Aug 4, 2019. It is now read-only.

Commit

Permalink
Merge pull request #1 from alcarney/develop
Browse files Browse the repository at this point in the history
Fix package issues
  • Loading branch information
alcarney authored Oct 28, 2018
2 parents 09509de + 9739f15 commit 813d1af
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ python:
- 3.6

install:
- pip install -r requirements.txt
- pip install tox

script:
- tox -e docs

deploy:
provider: pypi
distributions: "sdist bdist_wheel"
user: alcarney
skip_cleanup: true
password:
Expand Down
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
v0.1.1 - 2018-10-28
-------------------

Fixed
^^^^^

- Don't require users to have docutils available at the time of pip installing
the package

v0.1.0 - 2018-10-28
-------------------

Initial Release
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Sphinx-Stylo

| | |
|:--:|--|
|**Project** | [![PyPI - License](https://img.shields.io/pypi/l/sphinx-stylo.svg)](https://opensource.org/licenses/MIT)|
|**Code**| [![Build Status](https://travis-ci.org/alcarney/sphinx-stylo.svg?branch=develop)](https://travis-ci.org/alcarney/sphinx-stylo) |
|**PyPi**|[![PyPI](https://img.shields.io/pypi/v/sphinx-stylo.svg)](https://pypi.org/project/sphinx-stylo)|


**It is extremely early stages for this extension. It is not likely to be robust**

Sphinx-Stylo is an extension to the [Sphinx](http://www.sphinx-doc.org/en/master/)
Expand Down Expand Up @@ -49,4 +56,4 @@ extensions = [
...
"sphinx_stylo"
]
```
```
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

from sphinx_stylo import __version__
exec(open("sphinx_stylo/_version.py").read())


def readme():
Expand Down
2 changes: 1 addition & 1 deletion sphinx_stylo/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.1"

0 comments on commit 813d1af

Please sign in to comment.