Skip to content

Commit

Permalink
v0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
kinverarity1 committed Aug 8, 2015
1 parent 972432a commit 0ecadbc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -11,8 +11,7 @@ This is a Python package to read and write Log ASCII Standard (LAS) files, used

It is written entirely in Python and works on any platform. It requires:

- Python >= 2.7
- the small third-party package [``namedlist``][namedlist]
- the small third-party packages [``namedlist``][namedlist] and [``ordereddict``][ordereddict]
- [``numpy``][numpy].

### Install
Expand Down Expand Up @@ -92,6 +91,7 @@ Three options:

### Development

- 0.7 (2015-08-08) - all tests passing on Python 2.6 through 3.4
- 0.6 (2015-08-05) - bugfixes and renamed from ``las_reader`` to ``lasio``
- 0.5 (2015-08-01) - Improvements to writing LAS files
- 0.4 (2015-07-26) - Improved handling of character encodings, other internal improvements
Expand Down
2 changes: 1 addition & 1 deletion lasio/las.py
Expand Up @@ -33,7 +33,7 @@


logger = logging.getLogger(__name__)
__version__ = "0.6"
__version__ = "0.7"


HeaderItem = namedlist("HeaderItem", ["mnemonic", "unit", "value", "descr"])
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Expand Up @@ -21,7 +21,7 @@

setup(name='lasio',

version="0.6",
version="0.7",

description="Read/write well data from Log ASCII Standard (LAS) files",
long_description=(
Expand Down Expand Up @@ -53,8 +53,12 @@
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Scientific/Engineering",
"Topic :: System :: Filesystems",
"Topic :: Scientific/Engineering :: Information Analysis",
Expand Down

0 comments on commit 0ecadbc

Please sign in to comment.