Revision fbb11c1523ed49376257754b509004630ade3cb6 authored by Emma Turner on 15 May 2023, 10:33:12 UTC, committed by Emma Turner on 22 May 2023, 09:50:01 UTC
Deposit tickets into kernels

Demo: user confirmation to launch

Demo: dac members running

Demo: run dac observer

mondaynet: bump network

Demo: setup dac members in installer

demo: fix runner for DAC

demo: kernel artifacts

Kernel SDK: set dac members in installer

Demo: submit DAC messages

demo: kernel with debug log format

demo: optimise kernel

irmin update

perf

demo: splitup rollup assets across nodes

GCP

making DAC work

working

separate DAC

multi rollups/dacs per node
1 parent 5625696
Raw File
pyproject.toml
# If you modify this file, generate the lock file using `poetry lock` and copy
# the resulting poetry.lock file with this one in https://gitlab.com/tezos/opam-repository
[tool.poetry]
name = "tezos"
version = "0.1.0"
description = "Python documentation & scripts for Tezos"

readme = "README.md"

authors = [
  "Tezos community <tezos@tezos.com>"
]
repository = "https://gitlab.com/tezos/tezos"
homepage = "https://gitlab.com/tezos/tezos"

keywords = ["tezos"]


[tool.poetry.dependencies]
python = "~3.10"

# developer tools
mypy = "0.942"
mypy-extensions = "0.4.3"
pycodestyle = "2.7.0"
pylint = "2.11.1"
black = "22.3.0"

# pytest is used by scripts/ci/coverage.py and scripts/b58_prefix
pytest = "6.2.5"

# docs/ dependencies
sphinx = "4.2.0"
sphinx-rtd-theme = "0.5.2"
types-pygments = "2.14.0.1"
types-docutils = "0.19.1.2"

# scripts/b58_prefix dependencies
base58 = "2.1.0"
fire = "0.4.0"

# scripts/ci/coverage.py dependencies
python-gitlab = "2.10.1"

[tool.black]
line-length = 80
skip-string-normalization = true
back to top