Skip to content

Commit

Permalink
v0.24.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kinverarity1 committed Jul 11, 2019
1 parent f1de9a9 commit 3be9be4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 18 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
# The short X.Y version.
version = "0.24" #'0.7.7'
# The full version, including alpha/beta/rc tags.
release = "0.24" #'0.7.7'
release = "0.24.1" #'0.7.7'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion lasio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from .excel import ExcelConverter


__version__ = '0.24'
__version__ = '0.24.1'


def read(file_ref, **kwargs):
Expand Down
19 changes: 3 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,7 @@
from setuptools import setup
import os

try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
long_description = long_description.replace("\r","") # Do not forget this line
except:
print("Pandoc not found. Long_description conversion failure.")

# pandoc is not installed, fallback to using raw contents
with open('README.md') as f:
long_description = f.read()

__version__ = '0.24'

with open(os.path.join(os.path.dirname(__file__), "requirements.txt"), "r") as f:
requirements = f.read().splitlines()
__version__ = '0.24.1'

CLASSIFIERS = [
"Development Status :: 4 - Beta",
Expand Down Expand Up @@ -48,7 +34,8 @@
setup(name='lasio',
version=__version__,
description="Read/write well data from Log ASCII Standard (LAS) files",
long_description=long_description,
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/kinverarity1/lasio",
author="Kent Inverarity",
author_email="kinverarity@hotmail.com",
Expand Down

0 comments on commit 3be9be4

Please sign in to comment.