Skip to content

Commit f0a2d2b

Browse files
Merge pull request #6 from MSD-IRIMAS/aif/update-reqs
[MNT] Update release ```0.0.2```
2 parents 51066b3 + 5d8fa08 commit f0a2d2b

3 files changed

Lines changed: 16 additions & 12 deletions

File tree

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
strategy:
2020
matrix:
21-
os: [ ubuntu-22.04, macOS-14, windows-2022 ]
21+
os: [ ubuntu-22.04, macOS-14 ]
2222
python-version: [ "3.11","3.12" ]
2323

2424
steps:

dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@ WORKDIR /home/myuser/code
1313
RUN apt update
1414
RUN apt install -y jq
1515

16-
RUN pip install aeon==1.0.0
17-
RUN pip install keras==3.6.0
16+
RUN pip install --upgrade pip
17+
RUN pip install numpy==2.3.5
18+
RUN pip install scikit-learn==1.7.2
19+
RUN pip install aeon==1.4.0
20+
RUN pip install keras==3.14.1
1821
RUN pip install hydra-core==1.3.2
1922
RUN pip install omegaconf==2.3.0
20-
RUN pip install pandas==2.2.0
21-
RUN pip install matplotlib==3.10.0
23+
RUN pip install pandas==2.3.3
24+
RUN pip install matplotlib==3.10.9
2225
RUN pip install numba==0.60.0
2326
RUN pip install black
2427
RUN pip install flake8

pyproject.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "data-aug-4-tsc"
7-
version = "0.0.1"
7+
version = "0.0.2"
88
description = "Data Augmentation for Time series Data: A Review"
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
authors = [
@@ -42,14 +42,15 @@ classifiers = [
4242
]
4343

4444
dependencies = [
45-
"tensorflow==2.16.1",
46-
"keras==3.6.0",
47-
"numpy>=1.21.0,<2.1.0",
48-
"aeon==1.0.0",
45+
"tensorflow>=2.18",
46+
"keras>=3.6.0",
47+
"numpy>=2.0.0,<2.5.0",
48+
"scikit-learn>=1.6.0,<1.9.0",
49+
"aeon==1.4.0",
4950
"hydra-core==1.3.2",
5051
"omegaconf==2.3.0",
51-
"pandas==2.2.0",
52-
"matplotlib==3.10.0",
52+
"pandas>=2.2.2,<2.4.0",
53+
"matplotlib>=3.9.0,<3.11.0",
5354
"numba==0.60.0"
5455
]
5556

0 commit comments

Comments
 (0)