Skip to content
This repository has been archived by the owner on Apr 2, 2020. It is now read-only.

Commit

Permalink
preparation for release
Browse files Browse the repository at this point in the history
  • Loading branch information
fracpete committed Jan 4, 2017
1 parent 01909da commit 2339a41
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Changelog
=========

0.3.10 (????-??-??)
------------------
0.3.10 (2017-01-04)
-------------------

- `types.double_matrix_to_ndarray` no longer assumes a square matrix
(https://github.com/fracpete/python-weka-wrapper/issues/48)
- `len(Instances)` now returns the number of rows in the dataset (module `weka.core.dataset`)
- added method `insert_attribute` to the `Instances` class
- added class method `create_relational` to the `Attribute` class
- ...
- upgraded Weka to 3.9.1


0.3.9 (2016-10-19)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ using the [javabridge](https://pypi.python.org/pypi/javabridge) library.
Requirements:

* Python 2.7 (for Python 3 version see [here](https://github.com/fracpete/python-weka-wrapper3))
* javabridge (>= 1.0.11)
* javabridge (>= 1.0.14)
* matplotlib (optional)
* pygraphviz (optional)
* PIL (optional)
* Oracle JDK 1.7+

Uses:
* Weka (3.9.0)
* Weka (3.9.1)

## Installation

Expand Down
6 changes: 3 additions & 3 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@

# General information about the project.
project = u'python-weka-wrapper'
copyright = u'2014-2016, Peter "fracpete" Reutemann'
copyright = u'2014-2017, Peter "fracpete" Reutemann'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.3.9'
version = '0.3.10'
# The full version, including alpha/beta/rc tags.
release = '0.3.9'
release = '0.3.10'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The library has the following requirements:

Uses:

* Weka (3.9.0)
* Weka (3.9.1)

Contents
========
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

# setup.py
# Copyright (C) 2014-2016 Fracpete (pythonwekawrapper at gmail dot com)
# Copyright (C) 2014-2017 Fracpete (pythonwekawrapper at gmail dot com)

import os
from setuptools import setup
Expand Down Expand Up @@ -51,7 +51,7 @@ def download_weka():
"""
Downloads the Weka jar from github associated with this release if nececssary.
"""
url = "https://github.com/fracpete/python-weka-wrapper/raw/8fc11c3f728fbde705fb817953cb7844d6987ae6/python/weka/lib/weka.jar"
url = "https://github.com/fracpete/python-weka-wrapper/raw/01909daa575bbf838cccc7e27fe7e569a532c598/python/weka/lib/weka.jar"
outfile = os.path.join(os.path.dirname(__file__), "python", "weka", "lib", "weka.jar")
if not os.path.exists(outfile):
if not download_file(url, outfile):
Expand Down Expand Up @@ -105,11 +105,11 @@ def _read(f):
"weka": ["lib/*.jar"],
},
include_package_data=True,
version="0.3.9",
version="0.3.10",
author='Peter "fracpete" Reutemann',
author_email='pythonwekawrapper at gmail dot com',
install_requires=[
"javabridge>=1.0.11",
"javabridge>=1.0.14",
"numpy"
],
extras_require={
Expand Down
4 changes: 2 additions & 2 deletions tests/wekatests/coretests/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

# version.py
# Copyright (C) 2014 Fracpete (pythonwekawrapper at gmail dot com)
# Copyright (C) 2014-2016 Fracpete (pythonwekawrapper at gmail dot com)

import unittest
import weka.core.jvm as jvm
Expand All @@ -26,7 +26,7 @@ def test_version(self):
"""
Tests the version.weka_version() method
"""
self.assertEqual("3.9.0", version.weka_version())
self.assertEqual("3.9.1", version.weka_version())


def suite():
Expand Down

0 comments on commit 2339a41

Please sign in to comment.