File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change @@ -13,12 +13,15 @@ WORKDIR /home/myuser/code
1313RUN apt update
1414RUN 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
1821RUN pip install hydra-core==1.3.2
1922RUN 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
2225RUN pip install numba==0.60.0
2326RUN pip install black
2427RUN pip install flake8
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " data-aug-4-tsc"
7- version = " 0.0.1 "
7+ version = " 0.0.2 "
88description = " Data Augmentation for Time series Data: A Review"
99readme = { file = " README.md" , content-type = " text/markdown" }
1010authors = [
@@ -42,14 +42,15 @@ classifiers = [
4242]
4343
4444dependencies = [
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
You can’t perform that action at this time.
0 commit comments