Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V8.0.2 release #474

Merged
merged 3 commits into from
Sep 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Rater Scoring Modeling Tool
:target: https://travis-ci.org/EducationalTestingService/rsmtool
:alt: Build status

.. image:: https://dev.azure.com/EducationalTestingService/RSMTool/_apis/build/status/EducationalTestingService.rsmtool
:target: https://dev.azure.com/EducationalTestingService/RSMTool/_build?view=runs
:alt: Build status

.. image:: https://img.shields.io/coveralls/EducationalTestingService/rsmtool/master.svg
:target: https://coveralls.io/r/EducationalTestingService/rsmtool
:alt: Coverage status
Expand Down
4 changes: 2 additions & 2 deletions rsmtool/configuration_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,8 @@ def get_rater_error_variance(self):
"""
Get specified rater error variance, if any, and make sure it's numeric.

Returns:
--------
Returns
-------
rater_error_variance : float
specified rater error variance
"""
Expand Down
2 changes: 1 addition & 1 deletion rsmtool/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
in one place. Based on the suggestion `here. <http://bit.ly/16LbuJF>`_
"""

__version__ = '8.0.1'
__version__ = '8.0.2'
VERSION = tuple(int(x) for x in __version__.split('.'))