Skip to content

Commit

Permalink
Merge pull request #6 from sony/tf_2_15
Browse files Browse the repository at this point in the history
adding support for tf 2.15
  • Loading branch information
Chizkiyahu authored Dec 7, 2023
2 parents 85bb716 + d69622b commit 8b02f1b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,16 @@ jobs:
fail-fast: false
matrix:
py_ver: ["3.8", "3.9", "3.10", "3.11"]
tf_ver: ["2.10", "2.11", "2.12", "2.13", "2.14"]
tf_ver: ["2.10", "2.11", "2.12", "2.13", "2.14", "2.15"]
exclude:
- py_ver: "3.11"
tf_ver: "2.10"
- py_ver: "3.11"
tf_ver: "2.11"
- py_ver: "3.8"
tf_ver: "2.14"
- py_ver: "3.8"
tf_ver: "2.15"
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@ pip install sony-custom-layers
### Supported Versions

Currently, SCL is being tested on a matrix of Python and TensorFlow versions:

| **Framework** | **Tested FW versions** | **Tested Python version** | **Serialization** |
|---------------|------------------------|---------------------------|-------------------|
| TensorFlow | 2.10 | 3.8-3.10 | .h5 |
| TensorFlow | 2.11 | 3.8-3.10 | .h5 |
| TensorFlow | 2.12 | 3.8-3.11 | .h5 .keras |
| TensorFlow | 2.13 | 3.8-3.11 | .keras |
| TensorFlow | 2.14 | 3.9-3.11 | .keras |
| TensorFlow | 2.15 | 3.9-3.11 | .keras |

## Implemented Layers
SCL currently includes implementations of the following layers:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ classifiers =
[options]
python_requires = >=3.8,<3.12
install_requires =
tensorflow>=2.10,<2.15
tensorflow>=2.10,<2.16
numpy
packages=find:

Expand Down

0 comments on commit 8b02f1b

Please sign in to comment.