Skip to content

Commit 5690872

Browse files
Update dependencies and version to 0.4.0
Updated dependencies and version number in kha256.py.
1 parent 7bc7ed4 commit 5690872

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

kha256/kha256.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
:license: AGPL-3.0-or-later
2020
:copyright: Copyright 2025-2026 Mehmet Keçeci
2121

22-
# pip install -U aiohttp argon2-cffi python-dotenv nest_asyncio bcrypt blake3 kececinumbers pycryptodome xxhash pandas numpy cryptography ipywidgets ipython scipy
23-
# conda install -c conda-forge aiohttp argon2-cffi python-dotenv nest_asyncio bcrypt blake3 kececinumbers pycryptodome python-xxhash pandas numpy cryptography pandas ipywidgets ipython scipy
22+
# pip install -U aiohttp argon2-cffi python-dotenv nest-asyncio2 bcrypt blake3 kececinumbers pycryptodome xxhash pandas numpy cryptography ipywidgets ipython scipy
23+
# conda install -c conda-forge aiohttp argon2-cffi python-dotenv nest-asyncio2 bcrypt blake3 kececinumbers pycryptodome python-xxhash pandas numpy cryptography pandas ipywidgets ipython scipy
2424
# pip install xxhash: # xxh32 collision riski yüksek (64-bit için ~yüz milyonlarda %0.03)
2525

2626
* 0.3.7. qKHA256: quantum random
@@ -57,7 +57,7 @@
5757
import logging
5858
import math
5959
import matplotlib.pyplot as plt
60-
import nest_asyncio
60+
import nest_asyncio2
6161
import numpy as np
6262
import os
6363
import pandas as pd
@@ -82,7 +82,7 @@
8282
from . import __version__ # paket __init__.py'de tanımlı
8383

8484
# Jupyter Notebook uyumluluğu için
85-
nest_asyncio.apply()
85+
nest_asyncio2.apply()
8686

8787
# .env dosyasını yükle
8888
load_dotenv()
@@ -264,11 +264,11 @@ def is_jupyter():
264264
from . import __version__
265265
except ImportError:
266266
# Dosya doğrudan çalıştırıldığında (Örn: python kha256.py) fallback
267-
__version__ = "0.3.9"
267+
__version__ = "0.4.0"
268268

269269

270270
# Version information
271-
#__version__ = "0.3.9" # Updated
271+
#__version__ = "0.4.0" # Updated
272272
__author__ = "Mehmet Keçeci"
273273
__license__ = "AGPL-3.0-or-later"
274274
__status__ = "Pre-Production"

0 commit comments

Comments
 (0)