Skip to content

Commit

Permalink
Merge pull request #37 from OpenDebates/update-dependencies
Browse files Browse the repository at this point in the history
Update scipy
  • Loading branch information
vivekjoshy committed Feb 9, 2022
2 parents ba1a042 + a6c77d3 commit 0607b18
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 45 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.0.2
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)\.(?P<build>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ jobs:
poetry run coverage html
poetry run coverage xml --ignore-errors
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: true
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ This file is updated every release since v1.0.0 with the use of towncrier from t

.. towncrier release notes start
Openskill 1.0.1 (2022-02-04)
============================

Features
--------

- Update development status to "Stable" (`#34 <https://github.com/OpenDebates/openskill.py/issues/34>`_)


Openskill 1.0.0 (2022-02-04)
============================

Expand Down
1 change: 1 addition & 0 deletions changes/37.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updates scipy to 1.8.0
2 changes: 1 addition & 1 deletion openskill/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from openskill.rate import rate, Rating, create_rating, team_rating, predict_win


__version__ = "1.0.1"
__version__ = "1.0.2"
72 changes: 33 additions & 39 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "openskill"
version = "1.0.1"
version = "1.0.2"
description = "Python implementation of Weng-Lin Bayesian ranking, a better, license-free alternative to TrueSkill."
authors = ["Taven <taven@outlook.in>"]
license = "MIT"
Expand Down Expand Up @@ -40,7 +40,7 @@ include = [

[tool.poetry.dependencies]
python = ">=3.9, < 3.11"
scipy = "^1.7.3"
scipy = "^1.8.0"

[tool.poetry.dev-dependencies]
Sphinx = "^4.4.0"
Expand All @@ -54,7 +54,7 @@ bump2version = "^1.0.1"
black = "^22.1.0"
furo = "^2022.1.2"
jsonlines = "^3.0.0"
prompt-toolkit = "^3.0.26"
prompt-toolkit = "^3.0.27"
trueskill = "^0.4.5"
towncrier = "^21.3.0"

Expand Down

0 comments on commit 0607b18

Please sign in to comment.