Skip to content

Commit e65ece8

Browse files
authored
Merge pull request #651 from deezer/tf-2.5
Python 3.9 and TF 2.5 compatibility
2 parents 60525dc + 8997c09 commit e65ece8

File tree

5 files changed

+804
-618
lines changed

5 files changed

+804
-618
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.6, 3.7, 3.8]
11+
python-version: [3.6, 3.7, 3.8, 3.9]
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Set up Python ${{ matrix.python-version }}
@@ -48,4 +48,4 @@ jobs:
4848
poetry run black spleeter --check
4949
poetry run isort spleeter --check
5050
- name: Test with pytest
51-
run: poetry run pytest tests/
51+
run: poetry run pytest tests/

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog History
22

3+
## 2.3.0
4+
5+
Updating dependencies to enable TensorFlow 2.5 support (and Python 3.9 overall)
6+
Removing the destructor from the `Separator` class
7+
38
## 2.2.0
49

510
Minor changes mainly fixing some issues:

0 commit comments

Comments
 (0)