Skip to content

Commit 9d9509f

Browse files
Merge pull request #1 from geekcomputers/master
Merge necessary changes
2 parents aa6e7c0 + 3dfcfd0 commit 9d9509f

File tree

3 files changed

+39
-8
lines changed

3 files changed

+39
-8
lines changed

.circleci/config.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

async_downloader/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
aiohttp==3.13.1
1+
aiohttp==3.13.2

requirements_with_versions.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pafy==0.5.5
2-
aiohttp==3.13.1
2+
aiohttp==3.13.2
33
fuzzywuzzy==0.18.0
44
hupper==1.12.1
55
seaborn==0.13.2
@@ -41,7 +41,7 @@ tornado==6.5.2
4141
obs==0.0.0
4242
todo==0.1
4343
oauth2client==4.1.3
44-
keras==3.11.3
44+
keras==3.12.0
4545
pymongo==4.15.3
4646
playsound==1.3.0
4747
pyttsx3==2.99
@@ -58,7 +58,7 @@ requests-mock==1.12.1
5858
pyglet==2.1.9
5959
urllib3==2.5.0
6060
thirdai==0.9.33
61-
google-api-python-client==2.185.0
61+
google-api-python-client==2.186.0
6262
sound==0.1.0
6363
xlwt==1.3.0
6464
pygame==2.6.1
@@ -81,9 +81,9 @@ Unidecode==1.4.0
8181
Ball==0.2.9
8282
pynput==1.8.1
8383
gTTS==2.5.4
84-
ccxt==4.5.12
84+
ccxt==4.5.14
8585
fitz==0.0.1.dev2
86-
fastapi==0.120.0
86+
fastapi==0.120.2
8787
Django==5.2.7
8888
docx==0.2.4
8989
matplotlib==3.10.7
@@ -92,7 +92,7 @@ geocoder==1.38.1
9292
APScheduler==3.11.0
9393
PyQRCode==1.2.1
9494
freegames==2.5.3
95-
pyperclip==1.10.0
95+
pyperclip==1.11.0
9696
newspaper==0.1.0.7
9797
opencv-python==4.12.0.88
9898
tensorflow==2.20.0
@@ -101,7 +101,7 @@ pytest==8.4.2
101101
qrcode==8.2
102102
googletrans==4.0.2
103103
slab==1.8.2
104-
psutil==7.1.1
104+
psutil==7.1.2
105105
mediapipe==0.10.21
106106
rich==14.2.0
107107
httplib2==0.31.0

0 commit comments

Comments
 (0)