Skip to content

Commit 93ae605

Browse files
Add aiohttp, python-dotenv, and nest-asyncio2 packages
1 parent cee9b1c commit 93ae605

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

.github/workflows/conda-publish.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,19 @@ jobs:
254254
255255
echo "📦 python-xxhash kuruluyor..."
256256
conda install -n test-env -y python-xxhash -c conda-forge
257+
258+
echo "📦 aiohttp kuruluyor..."
259+
conda install -n test-env -y aiohttp -c conda-forge
260+
261+
echo "📦 python-dotenv kuruluyor..."
262+
conda install -n test-env -y python-dotenv -c conda-forge
263+
264+
echo "📦 nest-asyncio2 kuruluyor..."
265+
conda install -n test-env -y nest-asyncio2 -c conda-forge
257266
258267
echo ""
259268
echo "✅ Kriptografik paketler kuruldu:"
260-
conda list -n test-env | grep -E "(cryptography|pycryptodome|bcrypt|argon2|blake3|python-xxhash)" || true
269+
conda list -n test-env | grep -E "(aiohttp|dotenv|nest-asyncio2|cryptography|pycryptodome|bcrypt|argon2|blake3|python-xxhash)" || true
261270
262271
# ================================================================
263272
# ADIM 8: Oluşturulan Paketi Kur
@@ -280,7 +289,7 @@ jobs:
280289
281290
echo ""
282291
echo "✅ Tüm paketler:"
283-
conda list -n test-env | grep -E "(kha256|cryptography|pycryptodome|bcrypt|argon2|blake3|python-xxhash)" || true
292+
conda list -n test-env | grep -E "(kha256|aiohttp|dotenv|nest-asyncio2|cryptography|pycryptodome|bcrypt|argon2|blake3|python-xxhash)" || true
284293
285294
# ================================================================
286295
# ADIM 9: Paket Import Testi
@@ -296,6 +305,9 @@ jobs:
296305
import argon2
297306
import blake3
298307
import xxhash
308+
import aiohttp
309+
import dotenv
310+
import nest_asyncio2
299311
from Crypto.Cipher import ChaCha20
300312
301313
print('✅ Tüm bağımlılıklar başarıyla yüklendi!')
@@ -304,6 +316,7 @@ jobs:
304316
print(f'📦 argon2 version: {argon2.__version__}')
305317
print(f'📦 blake3 version: {blake3.__version__}')
306318
print(f'📦 xxhash version: {xxhash.VERSION}')
319+
print(f'📦 aiohttp version: {aiohttp.__version__}')
307320
print(f'📦 PyCryptodome: Crypto modülü çalışıyor')
308321
309322
try:

0 commit comments

Comments
 (0)