Skip to content

Commit

Permalink
v1.2.0 rc
Browse files Browse the repository at this point in the history
  • Loading branch information
animator committed Sep 23, 2020
1 parent 37afe5a commit 5a0d4f4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
**v1.2.0:**

* `titus2` home page and documentation has been migrated to [https://realworldpython.guide](https://realworldpython.guide/titus2/)

**v1.1.0:**

* `PFAEngine.fromPmml(pmmlDocument)` support is now dropped begining v1.1.0 as its implementation was originally not matured in [titus](https://github.com/opendatagroup/hadrian). Only 2/40 examples listed in the DMG PMML website were compatible with `PFAEngine.fromPmml(pmmlDocument)` in the original titus package.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ and the push to production pang continues ..

# New Features!

- `PFAEngine.fromPmml(pmmlDocument)` support is now dropped begining v1.1.0 as its implementation was originally not matured in [titus](https://github.com/opendatagroup/hadrian). Only 2/40 examples listed in the DMG PMML website were compatible with `PFAEngine.fromPmml(pmmlDocument)` in the original titus package.
- `titus2` home page and documentation has been migrated to [https://realworldpython.guide](https://realworldpython.guide/titus2/).

### Changes in titus2 v1.1.0
### Changes in titus2 v1.2.0

View the complete changelog [here](https://github.com/animator/titus2/blob/master/CHANGELOG.md).

Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
setup(name="titus2",
version=titus.version.__version__,
author="Ankit Mahato",
author_email="[email protected]",
author_email="[email protected]",
keywords='pfa scoring inference pmml titus hadrian machine learning data mining',
packages=["titus",
"titus.producer",
Expand All @@ -47,7 +47,12 @@
description="Python 3 implementation of Portable Format for Analytics (PFA): producer, converter, and consumer.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/animator/titus2",
url="https://realworldpython.guide/titus2/",
project_urls={
"Source Code": "https://github.com/animator/titus2",
"Bug Tracker": "https://github.com/animator/titus2/issues",
"Documentation": "https://realworldpython.guide/titus2/",
},
test_suite="test",
install_requires=["avro-python3>=1.8.2", "ply>=3.11", "pyyaml>=5.1.2", "numpy>=1.15.0", "pytz>=2019.1"],
tests_require=["avro-python3>=1.8.2", "ply>=3.11", "pyyaml>=5.1.2", "numpy>=1.15.0", "pytz>=2019.1"],
Expand Down
2 changes: 1 addition & 1 deletion titus/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version_info__ = (1,1,0)
__version_info__ = (1,2,0)

__version__ = ".".join(map(str, __version_info__))

Expand Down

0 comments on commit 5a0d4f4

Please sign in to comment.