Skip to content

Commit

Permalink
Update deps (#2013)
Browse files Browse the repository at this point in the history
* Update deps

* Use approx for minerva test comparison
  • Loading branch information
nikhilb4a authored Oct 24, 2024
1 parent ab2a972 commit 239351c
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 38 deletions.
79 changes: 45 additions & 34 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
Expand Up @@ -15,18 +15,18 @@ Flask = "^1.1.2"
flask-talisman = "^0.8.1"
jsonschema = "^3.2.0"
numpy = "^1.22.0"
requests = "^2.25.1"
requests = "^2.32.3"
SQLAlchemy-Utils = "0.38.3"
xkcdpass = "^1.19.2"
SQLAlchemy = "~1.3.20"
typing-extensions = "^4.1.0"
auth0-python = "^3.16.2"
gunicorn = "^20.1.0"
sentry-sdk = {version = "^1.2.0", extras = ["flask"]}
sentry-sdk = {version = "^1.45.1", extras = ["flask"]}
athena = {git = "https://github.com/filipzz/athena.git", rev = "v0.8.3"}
psycopg2-binary = "~2.8.6"
consistent-sampler = {git = "https://github.com/votingworks/consistent_sampler.git", rev = "master"}
scipy = "~1.6.0"
scipy = "~1.11.0"
Flask-SeaSurf = "^0.3.0"
boto3 = "^1.20.8"
r2b2 = {git = "https://github.com/gwexploratoryaudits/r2b2.git"}
Expand Down
2 changes: 1 addition & 1 deletion server/tests/audit_math/test_minerva.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def test_compute_risk_close_narrow():
minerva.make_sample_results(c, [[5100, 4990, 1]]),
{1: RoundInfo("r0", 10091)},
)
assert res == ({("winner", "loser"): 0.16896200607848647}, False)
assert res == ({("winner", "loser"): approx(0.16896200607848647)}, False)


def test_compute_risk_close_narrow_2():
Expand Down

0 comments on commit 239351c

Please sign in to comment.