mirror of
https://github.com/cmehay/docker-tor-hidden-service.git
synced 2025-04-22 14:59:12 +00:00
Update to python 3.10
This commit is contained in:
parent
f21e478f60
commit
6a89df004c
4 changed files with 545 additions and 588 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM python:3.9-alpine
|
FROM python:3.10-alpine
|
||||||
|
|
||||||
# if omitted, the versions are determined from the git tags
|
# if omitted, the versions are determined from the git tags
|
||||||
ARG tor_version
|
ARG tor_version
|
||||||
|
|
1097
poetry.lock
generated
1097
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -23,24 +23,24 @@ packages = [
|
||||||
onions = "onions:main"
|
onions = "onions:main"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = ">=3.8,<3.10"
|
python = ">=3.10,<3.11"
|
||||||
pytor = "^0.1.7"
|
Jinja2 = ">=2.10"
|
||||||
Jinja2 = "^2.10"
|
importlib_metadata = ">=1.6.0"
|
||||||
pyentrypoint = "^0.7.4"
|
vanguards = ">=0.3.1"
|
||||||
importlib_metadata = "^1.6.0"
|
ipy = ">=1.00"
|
||||||
vanguards = "^0.3.1"
|
pytor = '^0.1.9'
|
||||||
ipy = "^1.00"
|
pyentrypoint = "^0.8.0"
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
autopep8 = "^1.5.2"
|
autopep8 = ">=1.5.2"
|
||||||
tox = "^3.15.0"
|
tox = ">=3.15.0"
|
||||||
cryptography = "^3.2"
|
cryptography = ">=3.2"
|
||||||
pylint = "^2.5.2"
|
pylint = ">=2.5.2"
|
||||||
ptpython = "^3.0.2"
|
ptpython = ">=3.0.2"
|
||||||
black = "^19.10b0"
|
black = ">=19.10b0"
|
||||||
pre-commit = "^2.3.0"
|
pre-commit = ">=2.3.0"
|
||||||
pytest = "^5.4.2"
|
pytest = ">=5.4.2"
|
||||||
pyfakefs = "^4.0.2"
|
pyfakefs = ">=4.0.2"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry>=0.12"]
|
requires = ["poetry>=0.12"]
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,6 +1,6 @@
|
||||||
[tox]
|
[tox]
|
||||||
isolated_build = true
|
isolated_build = true
|
||||||
envlist = py39
|
envlist = py310
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
whitelist_externals = poetry
|
whitelist_externals = poetry
|
||||||
|
|
Loading…
Add table
Reference in a new issue