File tree Expand file tree Collapse file tree 3 files changed +39
-8
lines changed Expand file tree Collapse file tree 3 files changed +39
-8
lines changed Original file line number Diff line number Diff line change 1+ # Use the latest 2.1 version of CircleCI pipeline process engine.
2+ # See: https://circleci.com/docs/reference/configuration-reference
3+ version : 2.1
4+
5+ # Define a job to be invoked later in a workflow.
6+ # See: https://circleci.com/docs/guides/orchestrate/jobs-steps/#jobs-overview & https://circleci.com/docs/reference/configuration-reference/#jobs
7+ jobs :
8+ say-hello :
9+ # Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub.
10+ # See: https://circleci.com/docs/guides/execution-managed/executor-intro/ & https://circleci.com/docs/reference/configuration-reference/#executor-job
11+ docker :
12+ # Specify the version you desire here
13+ # See: https://circleci.com/developer/images/image/cimg/base
14+ - image : cimg/base:current
15+
16+ # Add steps to the job
17+ # See: https://circleci.com/docs/guides/orchestrate/jobs-steps/#steps-overview & https://circleci.com/docs/reference/configuration-reference/#steps
18+ steps :
19+ # Checkout the code as the first step.
20+ - checkout
21+ - run :
22+ name : " Say hello"
23+ command : " echo Hello, World!"
24+
25+ # Orchestrate jobs using workflows
26+ # See: https://circleci.com/docs/guides/orchestrate/workflows/ & https://circleci.com/docs/reference/configuration-reference/#workflows
27+ workflows :
28+ say-hello-workflow : # This is the name of the workflow, feel free to change it to better match your workflow.
29+ # Inside the workflow, you define the jobs you want to run.
30+ jobs :
31+ - say-hello
Original file line number Diff line number Diff line change 1- aiohttp == 3.13.1
1+ aiohttp == 3.13.2
Original file line number Diff line number Diff line change 11pafy==0.5.5
2- aiohttp==3.13.1
2+ aiohttp==3.13.2
33fuzzywuzzy==0.18.0
44hupper==1.12.1
55seaborn==0.13.2
@@ -41,7 +41,7 @@ tornado==6.5.2
4141obs==0.0.0
4242todo==0.1
4343oauth2client==4.1.3
44- keras==3.11.3
44+ keras==3.12.0
4545pymongo==4.15.3
4646playsound==1.3.0
4747pyttsx3==2.99
@@ -58,7 +58,7 @@ requests-mock==1.12.1
5858pyglet==2.1.9
5959urllib3==2.5.0
6060thirdai==0.9.33
61- google-api-python-client==2.185 .0
61+ google-api-python-client==2.186 .0
6262sound==0.1.0
6363xlwt==1.3.0
6464pygame==2.6.1
@@ -81,9 +81,9 @@ Unidecode==1.4.0
8181Ball==0.2.9
8282pynput==1.8.1
8383gTTS==2.5.4
84- ccxt==4.5.12
84+ ccxt==4.5.14
8585fitz==0.0.1.dev2
86- fastapi==0.120.0
86+ fastapi==0.120.2
8787Django==5.2.7
8888docx==0.2.4
8989matplotlib==3.10.7
@@ -92,7 +92,7 @@ geocoder==1.38.1
9292APScheduler==3.11.0
9393PyQRCode==1.2.1
9494freegames==2.5.3
95- pyperclip==1.10 .0
95+ pyperclip==1.11 .0
9696newspaper==0.1.0.7
9797opencv-python==4.12.0.88
9898tensorflow==2.20.0
@@ -101,7 +101,7 @@ pytest==8.4.2
101101qrcode==8.2
102102googletrans==4.0.2
103103slab==1.8.2
104- psutil==7.1.1
104+ psutil==7.1.2
105105mediapipe==0.10.21
106106rich==14.2.0
107107httplib2==0.31.0
You can’t perform that action at this time.
0 commit comments