Skip to content

Commit

Permalink
version update for keras_efficient_kan and tkan, add python 3.12 to h…
Browse files Browse the repository at this point in the history
…andled version
  • Loading branch information
remigenet committed Sep 9, 2024
1 parent 2a60cf8 commit c7d6b73
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tkat_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
12 changes: 7 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "tkat"
version = "0.2.0"
version = "0.2.1"
description = "Temporal KAN Transformer"
authors = [ "Rémi Genet", "Hugo Inzirillo"]
readme = "README.md"
packages = [{include = "tkat"}]

[tool.poetry.dependencies]
python = ">=3.9,<3.12"
python = ">=3.9,<3.13"
keras = ">=3.0.0,<4.0"
keras_efficient_kan = "^0.1.4"
tkan = "^0.4.1"
keras_efficient_kan = "^0.1.6"
tkan = "^0.4.2"

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
Expand All @@ -30,5 +30,7 @@ testpaths = ["tests"]
filterwarnings = [
"ignore:Can't initialize NVML:UserWarning",
"ignore:jax.xla_computation is deprecated:DeprecationWarning",
"ignore::DeprecationWarning:jax._src.dtypes"
"ignore::DeprecationWarning:jax._src.dtypes",
"ignore:Type google._upb._message.MessageMapContainer uses PyType_Spec with a metaclass that has custom tp_new:DeprecationWarning:importlib",
"ignore:Type google._upb._message.ScalarMapContainer uses PyType_Spec with a metaclass that has custom tp_new:DeprecationWarning:importlib",
]

0 comments on commit c7d6b73

Please sign in to comment.