From 5a0d4f41ff88a9c3a6472b0b53a2d00ca84ef44b Mon Sep 17 00:00:00 2001 From: Ankit Mahato Date: Thu, 24 Sep 2020 01:21:32 +0530 Subject: [PATCH] v1.2.0 rc --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- setup.py | 9 +++++++-- titus/version.py | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42fd9fa..1a4f546 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 5d98eff..be6a03d 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/setup.py b/setup.py index 7579047..4e2aca8 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup(name="titus2", version=titus.version.__version__, author="Ankit Mahato", - author_email="ankmahato@gmail.com", + author_email="ankit@realworldpython.guide", keywords='pfa scoring inference pmml titus hadrian machine learning data mining', packages=["titus", "titus.producer", @@ -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"], diff --git a/titus/version.py b/titus/version.py index c072859..5b022e6 100644 --- a/titus/version.py +++ b/titus/version.py @@ -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__))