Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/pearson
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda authored Apr 26, 2023
2 parents b9a258f + 98bcf1a commit f69221c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 11 deletions.
1 change: 1 addition & 0 deletions .azure/gpu-unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
steps:

- script: |
set -ex
container_id=$(head -1 /proc/self/cgroup|cut -d/ -f3)
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
/tmp/docker exec -t -u 0 $container_id \
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
_pip-wheels/

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down Expand Up @@ -123,3 +124,6 @@ lightning_logs
*.gz
.DS_Store
.*_submit.py

# Ruff
.ruff_cache/
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment

numpy >=1.18.5
numpy >1.20.0
torch >=1.8.1, <=2.0.0
typing-extensions; python_version < '3.9'
packaging # hotfix for utils, can be dropped with lit-utils >=0.5
Expand Down
4 changes: 2 additions & 2 deletions requirements/audio_test.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment

pypesq >1.2, <=1.2.4
pypesq @ git+https://github.com/vBaiCai/python-pesq
mir-eval >=0.6, <=0.7
speechmetrics @ https://github.com/aliutkus/speechmetrics/archive/refs/heads/master.zip
speechmetrics @ git+https://github.com/aliutkus/speechmetrics
fast-bss-eval >=0.1.0, <0.1.5
torch_complex <=0.4.3 # needed for fast-bss-eval
2 changes: 1 addition & 1 deletion requirements/image_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment

scikit-image >=0.19.0, <=0.20.0
kornia >=0.6.7, <0.6.12
kornia >=0.6.7, <0.6.13
pytorch-msssim ==0.2.1
sewar >=0.4.4, <=0.4.5
14 changes: 7 additions & 7 deletions requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment

coverage >5.2, <7.3.0
pytest >=6.0.0, <7.4.0
pytest-cov >2.10, <=4.0.0
pytest-doctestplus >=0.9.0, <=0.12.1
pytest-rerunfailures >=10.0, <12.0
pytest-timeout <=2.1.0
phmdoctest>=1.1.1, <=1.4.0
coverage ==7.2.3
pytest ==7.2.2
pytest-cov >2.10, ==4.0.0
pytest-doctestplus ==0.12.1
pytest-rerunfailures ==11.1.2
pytest-timeout ==2.1.0
phmdoctest ==1.1.1

psutil <=5.9.5
requests <=2.28.2
Expand Down

0 comments on commit f69221c

Please sign in to comment.