summaryrefslogtreecommitdiff
path: root/games/py-trueskill
AgeCommit message (Collapse)AuthorFilesLines
2015-11-03Add SHA512 digests for distfiles for games categoryagc1-1/+2
Problems found locating distfiles: Package blokus: missing distfile blokus-1.1.tar.gz Package crossfire-client: missing distfile crossfire-client-images-1.11.0.tar.gz Package dungeon: missing distfile dungeon-gdt-glk.tar.gz Package gate88: missing distfile Gate88_Mar19_05.tar.gz Package gnuchess4: missing distfile gnuchess-4.0.pl80.tar.gz Package ioquake3-pk3: missing distfile quake3-latest-pk3s.zip Package rollemup: missing distfile Rollemup.tar.gz Package tscp: missing distfile tscp181.zip Package xbat: missing distfile xev111.tar.gz Package xgalaga: missing distfile xgalaga-2.0.34.tar.gz Package xrick: missing distfile xrick-021212.tgz Package xskat: missing distfile xskat-cards.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2014-09-07Update to 0.4.3. Changes not found.wiz2-6/+6
2014-07-23Fix packaging.wiz2-7/+7
2014-07-22Update to 0.4.2. Changes not found.wiz3-13/+17
2014-01-25Mark packages as not ready for python-3.x where applicable;wiz1-2/+1
either because they themselves are not ready or because a dependency isn't. This is annotated by PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of x.y.z or PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-foo, py-bar respectively, please use the same style for other packages, and check during updates. Use versioned_dependencies.mk where applicable. Use REPLACE_PYTHON instead of handcoded alternatives, where applicable. Reorder Makefile sections into standard order, where applicable. Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default with the next commit. Whitespace cleanups and other nits corrected, where necessary.
2013-06-12Update to 0.4.1:wiz2-6/+6
Deprecates dynamic_draw_probability().
2013-05-26Update to 0.4:wiz3-13/+16
0.4 Released on Mar 25th 2013. Supports dynamic draw probability. Replaces Rating.exposure() with TrueSkill.expose(). Because the TrueSkill settings have to adjust a fomula to calculate an exposure. Deprecates head-to-head shortcut methods in TrueSkill. The top-level shortcut functions are still alive. Version 0.3.1 Released on Mar 6th 2013. Raises FloatingPointError instead of ValueError (math domain error) for a problem similar to issue #5 but with more extreme input. Version 0.3 Released on Mar 5th 2013. TrueSkill got a new option backend to choose cdf, pdf, ppf implementation. When winners have too lower rating than losers, TrueSkill.rate() will raise FloatingPointError if the backend is None or scipy. But from this version, you can avoid the problem with mpmath backend. This was reported at issue #5. Version 0.2.1 Released on Dec 6th 2012. Fixes a printing bug on TrueSkill.quality(). Version 0.2 Released on Nov 30th 2012. Implements “Partial play”. Works well in many Python versions, 2.5, 2.6, 2.7, 3.1, 3.2, 3.3 and many interpreters, CPython, Jython, PyPy. Supports that using dictionaries as a rating_group to choose specific playerâs rating simply. Adds shorcut functions for 2 players individual match, the most usage: rate_1vs1() and quality_1vs1(), TrueSkill.transform_ratings() is now called TrueSkill.rate(). TrueSkill.match_quality() is now called TrueSkill.quality().
2013-04-01Update HOMEPAGE.wiz1-2/+2
2012-10-07Update to 0.1.4: bug fixes.wiz2-6/+6
2012-10-06Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-10-03Update for python25 removal.wiz1-3/+1
2012-05-21Fails with syntax errors on python25, so mask it.dholland1-1/+3
2012-05-16Initial import of py-trueskill-0.1.3:wiz4-0/+48
TrueSkill(tm) is a rating system among game players. It has been used on Xbox Live to rank and match players. TrueSkill system quantizes `TRUE' skill points by a Bayesian inference algorithm. This project is a Python package which implements TrueSkill(tm) rating system.