Skip to content

Commit

Permalink
Merge pull request #651 from deezer/tf-2.5
Browse files Browse the repository at this point in the history
Python 3.9 and TF 2.5 compatibility
  • Loading branch information
Faylixe committed Sep 3, 2021
2 parents 60525dc + 8997c09 commit e65ece8
Show file tree
Hide file tree
Showing 5 changed files with 804 additions and 618 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -48,4 +48,4 @@ jobs:
poetry run black spleeter --check
poetry run isort spleeter --check
- name: Test with pytest
run: poetry run pytest tests/
run: poetry run pytest tests/
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog History

## 2.3.0

Updating dependencies to enable TensorFlow 2.5 support (and Python 3.9 overall)
Removing the destructor from the `Separator` class

## 2.2.0

Minor changes mainly fixing some issues:
Expand Down
Loading

0 comments on commit e65ece8

Please sign in to comment.