chore: update deps

This commit is contained in:
Rim 2025-03-10 19:02:07 -04:00
parent dfc647e500
commit ce97cd6ef4
50 changed files with 46 additions and 10 deletions

Binary file not shown.

BIN
deps/DateTime-5.5-py3-none-any.whl vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
deps/attrs-25.1.0-py3-none-any.whl vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
deps/certifi-2025.1.31-py3-none-any.whl vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
deps/idna-3.10-py3-none-any.whl vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
deps/pip-25.0.1-py3-none-any.whl vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
deps/requests-2.32.3-py3-none-any.whl vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
deps/setuptools-76.0.0-py3-none-any.whl vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
deps/urllib3-2.3.0-py3-none-any.whl vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
deps/wheel-0.45.1-py3-none-any.whl vendored Normal file

Binary file not shown.

BIN
deps/yarl-1.18.3-cp39-cp39-win_amd64.whl vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

34
requirements.txt Normal file
View File

@ -0,0 +1,34 @@
#
aiohappyeyeballs==2.5.0
aiohttp==3.11.13
aiosignal==1.3.2
altgraph==0.17.4
async-timeout==5.0.1
asyncio==3.4.3
attrs==25.1.0
certifi==2025.1.31
charset-normalizer==3.4.1
cod-api==2.0.2
colorama==0.4.6
datetime==5.5
enum34==1.1.10
frozenlist==1.5.0
idna==3.10
importlib-metadata==8.6.1
multidict==6.1.0
packaging==24.2
pefile==2023.2.7
propcache==0.3.0
pyinstaller==6.12.0
pyinstaller-hooks-contrib==2025.1
pytz==2025.1
pywin32-ctypes==0.2.3
pyyaml==6.0.2
requests==2.32.3
tomli==2.2.1
typing-extensions==4.12.2
urllib3==2.3.0
uuid==1.30
yarl==1.18.3
zipp==3.21.0
zope-interface==7.2

View File

@ -47,7 +47,8 @@ def get_pip_path(venv_dir):
"""Get the platform-specific path to pip in the virtual environment."""
if sys.platform == 'win32':
return venv_dir / 'Scripts' / 'pip'
return venv_dir / 'bin' / 'pip'
else:
return venv_dir / 'bin' / 'pip'
def install_packages(pip_path, deps_dir):
@ -58,17 +59,18 @@ def install_packages(pip_path, deps_dir):
str(pip_path), 'install',
'--no-index',
f'--find-links={deps_dir}',
'-r', 'requirements.txt',
*base_packages
])
print("Installing COD API package...")
cod_api_wheel = 'cod_api-2.0.2-py3-none-any.whl'
subprocess.check_call([
str(pip_path), 'install',
'--no-index',
f'--find-links={deps_dir}',
str(deps_dir / cod_api_wheel)
])
# print("Installing COD API package...")
# cod_api_wheel = 'cod_api-2.0.2-py3-none-any.whl'
# subprocess.check_call([
# str(pip_path), 'install',
# '--no-index',
# f'--find-links={deps_dir}',
# str(deps_dir / cod_api_wheel)
# ])
def clean_environment(pip_path):
@ -109,4 +111,4 @@ def main():
if __name__ == "__main__":
main()
main()