Loosen dependency version requirements

This commit is contained in:
Logan Williams
2023-05-10 14:15:56 +02:00
parent 37828b4be4
commit db9b613ae4
4 changed files with 1312 additions and 725 deletions

28
Pipfile
View File

@@ -4,8 +4,32 @@ verify_ssl = true
name = "pypi" name = "pypi"
[packages] [packages]
vk-api = "*" vk-api = ">=11.9.9"
yt-dlp = "*" yt-dlp = ">=2023.2.17"
flake8 = "*"
mypy = ">=0.961"
black = ">=22.3.0"
isort = ">=5.10.1"
pytest = "*"
pytest-sphinx = "*"
pytest-cov = "*"
twine = ">=1.11.0"
sphinx = "<5.1.0,>=4.3.0"
furo = ">=2022.6.4.1"
myst-parser = "<0.19.0,>=0.15.2"
sphinx-copybutton = ">=0.5.0"
sphinx-autobuild = ">=2021.3.14"
sphinx-autodoc-typehints = "*"
python-dotenv = ">=0.21.1"
brotli = ">=1.0.9"
certifi = ">=2022.12.7"
charset-normalizer = ">=3.0.1"
idna = ">=3.4"
mutagen = ">=1.46.0"
pycryptodomex = ">=3.17"
requests = ">=2.28.2"
urllib3 = ">=1.26.14"
websockets = ">=10.4"
[dev-packages] [dev-packages]
sphinx-copybutton = "==0.5.0" sphinx-copybutton = "==0.5.0"

1973
Pipfile.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -2,11 +2,11 @@
flake8 flake8
# Static type checking # Static type checking
mypy==0.961 mypy>=0.961
# Automatic code formatting # Automatic code formatting
black==22.3.0 black>=22.3.0
isort==5.10.1 isort>=5.10.1
# Running tests # Running tests
pytest pytest
@@ -24,20 +24,20 @@ wheel
Sphinx>=4.3.0,<5.1.0 Sphinx>=4.3.0,<5.1.0
# Sphinx theme: https://sphinx-themes.org/sample-sites/furo/ # Sphinx theme: https://sphinx-themes.org/sample-sites/furo/
furo==2022.6.4.1 furo>=2022.6.4.1
# Lets Sphinx parse markdown files in addition to rst. # Lets Sphinx parse markdown files in addition to rst.
myst-parser>=0.15.2,<0.19.0 myst-parser>=0.15.2,<0.19.0
# Adds a copy button to code examples in the docs. # Adds a copy button to code examples in the docs.
sphinx-copybutton==0.5.0 sphinx-copybutton>=0.5.0
# Live rebuilding and reloading of docs for developing locally. # Live rebuilding and reloading of docs for developing locally.
sphinx-autobuild==2021.3.14 sphinx-autobuild>=2021.3.14
# Automatically adds types to docs # Automatically adds types to docs
sphinx-autodoc-typehints sphinx-autodoc-typehints
# For parsing and comparing version numbers. # For parsing and comparing version numbers.
packaging packaging
python-dotenv==0.21.1 python-dotenv>=0.21.1

View File

@@ -6,14 +6,14 @@
# #
# -i https://pypi.org/simple # -i https://pypi.org/simple
brotli==1.0.9; platform_python_implementation == 'CPython' brotli>=1.0.9; platform_python_implementation >= 'CPython'
certifi==2022.12.7; python_version >= '3.6' certifi>=2022.12.7; python_version >= '3.6'
charset-normalizer==3.0.1; python_version >= '3.6' charset-normalizer>=3.0.1; python_version >= '3.6'
idna==3.4; python_version >= '3.5' idna>=3.4; python_version >= '3.5'
mutagen==1.46.0; python_version >= '3.7' mutagen>=1.46.0; python_version >= '3.7'
pycryptodomex==3.17; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' pycryptodomex>=3.17; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
requests==2.28.2; python_version >= '3.7' and python_version < '4' requests>=2.28.2; python_version >= '3.7' and python_version < '4'
urllib3==1.26.14; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5' urllib3>=1.26.14; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'
vk-api==11.9.9 vk-api>=11.9.9
websockets==10.4; python_version >= '3.7' websockets>=10.4; python_version >= '3.7'
yt-dlp==2023.2.17 yt-dlp>=2023.2.17