Skip to content

Commit

Permalink
Upgrade requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike committed Oct 18, 2022
1 parent d889a72 commit dcf5c9f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ python =
[testenv]
recreate = true
wheel = true
wheel_pep517 = build
deps =
-r test-requirements.txt
commands =
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
hdx-python-utilities==3.4.5
libhxl==4.26
hdx-python-utilities==3.4.7
libhxl==4.27
pyphonetics==0.5.3
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ package_dir =
python_requires = >=3.6

install_requires =
hdx-python-utilities>=3.4.5
libhxl>=4.26
hdx-python-utilities>=3.4.7
libhxl>=4.27
pyphonetics

[options.packages.find]
Expand Down
4 changes: 2 additions & 2 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytest==7.1.3
pytest-cov==3.0.0
pytest-cov==4.0.0
tox==3.26.0
tox-wheel==0.7.0
tox-wheel==1.0.0
-r requirements.txt
2 changes: 1 addition & 1 deletion tests/hdx/location/test_currency.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def test_get_current_value_in_usd(self, retrievers):
Currency._secondary_rates = None
rate2gbp = Currency.get_current_rate("gbp")
assert rate2gbp != 1
assert abs(rate1gbp - rate2gbp) / rate1gbp < 0.004
assert abs(rate1gbp - rate2gbp) / rate1gbp < 0.007
Currency.setup(
retriever=retrievers[1],
primary_rates_url="fail",
Expand Down

0 comments on commit dcf5c9f

Please sign in to comment.