Skip to content

Commit 5a0d4f4

Browse files
committed
v1.2.0 rc
1 parent 37afe5a commit 5a0d4f4

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**v1.2.0:**
2+
3+
* `titus2` home page and documentation has been migrated to [https://realworldpython.guide](https://realworldpython.guide/titus2/)
4+
15
**v1.1.0:**
26

37
* `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.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ and the push to production pang continues ..
2222

2323
# New Features!
2424

25-
- `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.
25+
- `titus2` home page and documentation has been migrated to [https://realworldpython.guide](https://realworldpython.guide/titus2/).
2626

27-
### Changes in titus2 v1.1.0
27+
### Changes in titus2 v1.2.0
2828

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

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
setup(name="titus2",
3535
version=titus.version.__version__,
3636
author="Ankit Mahato",
37-
author_email="ankmahato@gmail.com",
37+
author_email="ankit@realworldpython.guide",
3838
keywords='pfa scoring inference pmml titus hadrian machine learning data mining',
3939
packages=["titus",
4040
"titus.producer",
@@ -47,7 +47,12 @@
4747
description="Python 3 implementation of Portable Format for Analytics (PFA): producer, converter, and consumer.",
4848
long_description=LONG_DESCRIPTION,
4949
long_description_content_type="text/markdown",
50-
url="https://github.com/animator/titus2",
50+
url="https://realworldpython.guide/titus2/",
51+
project_urls={
52+
"Source Code": "https://github.com/animator/titus2",
53+
"Bug Tracker": "https://github.com/animator/titus2/issues",
54+
"Documentation": "https://realworldpython.guide/titus2/",
55+
},
5156
test_suite="test",
5257
install_requires=["avro-python3>=1.8.2", "ply>=3.11", "pyyaml>=5.1.2", "numpy>=1.15.0", "pytz>=2019.1"],
5358
tests_require=["avro-python3>=1.8.2", "ply>=3.11", "pyyaml>=5.1.2", "numpy>=1.15.0", "pytz>=2019.1"],

titus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# See the License for the specific language governing permissions and
1818
# limitations under the License.
1919

20-
__version_info__ = (1,1,0)
20+
__version_info__ = (1,2,0)
2121

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

0 commit comments

Comments
 (0)