Compare commits
3 Commits
02df3f792e
...
c84517e3db
Author | SHA1 | Date | |
---|---|---|---|
c84517e3db | |||
dcea763ce5 | |||
e55b82f529 |
@ -23,12 +23,12 @@ class Attachment(Data):
|
|||||||
self.path = path
|
self.path = path
|
||||||
self.writer = writer
|
self.writer = writer
|
||||||
self.attachment_path = os.path.join(self.path, "attachments")
|
self.attachment_path = os.path.join(self.path, "attachments")
|
||||||
|
self.start()
|
||||||
if interactive:
|
if interactive:
|
||||||
self.start()
|
|
||||||
input(
|
input(
|
||||||
f"Please add attachment files to '{os.path.abspath(os.path.join(self.path,'attachments'))}' and then press ENTER to continue"
|
f"Please add attachment files to '{os.path.abspath(os.path.join(self.path,'attachments'))}' and then press ENTER to continue"
|
||||||
)
|
)
|
||||||
self.load()
|
self.load()
|
||||||
|
|
||||||
def load(self):
|
def load(self):
|
||||||
"""Loads attachment data from settings."""
|
"""Loads attachment data from settings."""
|
||||||
|
12
poetry.lock
generated
12
poetry.lock
generated
@ -573,15 +573,15 @@ reference = "grassroots_"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "eth-contract-registry"
|
name = "eth-contract-registry"
|
||||||
version = "0.7.2"
|
version = "0.7.4"
|
||||||
description = "Ethereum Smart Contract key-value registry"
|
description = "Ethereum Smart Contract key-value registry"
|
||||||
category = "main"
|
category = "main"
|
||||||
optional = true
|
optional = true
|
||||||
python-versions = ">=3.6"
|
python-versions = ">=3.6"
|
||||||
|
|
||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
chainlib-eth = ">=0.0.12,<0.1.0"
|
chainlib-eth = ">=0.0.12,<=0.1.0"
|
||||||
confini = ">=0.5.2,<0.6.0"
|
confini = ">=0.5.6,<0.6.0"
|
||||||
|
|
||||||
[package.source]
|
[package.source]
|
||||||
type = "legacy"
|
type = "legacy"
|
||||||
@ -593,7 +593,7 @@ name = "eth-erc20"
|
|||||||
version = "0.1.11"
|
version = "0.1.11"
|
||||||
description = "ERC20 interface and simple contract with deployment script that lets any address mint and gift itself tokens."
|
description = "ERC20 interface and simple contract with deployment script that lets any address mint and gift itself tokens."
|
||||||
category = "main"
|
category = "main"
|
||||||
optional = false
|
optional = true
|
||||||
python-versions = ">=3.6"
|
python-versions = ">=3.6"
|
||||||
|
|
||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
@ -1975,12 +1975,12 @@ url = "https://pypi.org/simple"
|
|||||||
reference = "pypi_"
|
reference = "pypi_"
|
||||||
|
|
||||||
[extras]
|
[extras]
|
||||||
eth = ["chainlib-eth", "eth-token-index", "eth-address-index", "okota", "cic_eth_registry", "cic_contracts"]
|
eth = ["chainlib-eth", "eth-token-index", "eth-address-index", "okota", "cic-eth-registry", "cic-contracts"]
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "1.1"
|
lock-version = "1.1"
|
||||||
python-versions = "^3.8"
|
python-versions = "^3.8"
|
||||||
content-hash = "b8e29fc12298dcf81b596609dfccfb5ec4487fe79e212443cf10748742cb9d82"
|
content-hash = "4a6c755c9feda4ab9c01f65667875b1aef4eb2c694a352e36c8a69f2172e184b"
|
||||||
|
|
||||||
[metadata.files]
|
[metadata.files]
|
||||||
asn1crypto = [
|
asn1crypto = [
|
||||||
|
@ -41,18 +41,18 @@ secondary = true
|
|||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.8"
|
python = "^3.8"
|
||||||
funga-eth = "~0.5.5"
|
funga-eth = "^0.5.0"
|
||||||
cic-types = "~0.2.1"
|
cic-types = "^0.2.0"
|
||||||
confini = "~0.5.3"
|
confini = "^0.5.3"
|
||||||
chainlib = "~0.0.17"
|
chainlib = "*"
|
||||||
cbor2 = "5.4.1"
|
cbor2 = "5.4.1"
|
||||||
|
|
||||||
chainlib-eth = { version = "~0.0.25", optional = true }
|
chainlib-eth = { version = "*", optional = true }
|
||||||
eth-token-index = { version = "~0.2.4", optional = true }
|
eth-token-index = { version = "^0.2.0", optional = true }
|
||||||
eth-address-index = { version = "~0.2.4", optional = true }
|
eth-address-index = { version = "*", optional = true }
|
||||||
okota = { version = "~0.2.5", optional = true }
|
okota = { version = "^0.2.0", optional = true }
|
||||||
cic_eth_registry = { version = "~0.6.6", optional = true }
|
cic-eth-registry = { version = "^0.6.0", optional = true }
|
||||||
cic_contracts = { version = "~0.0.5", optional = true }
|
cic-contracts = { version = "*", optional = true }
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
@ -61,7 +61,6 @@ pytest-cov = "2.10.1"
|
|||||||
python-semantic-release = "^7.25.2"
|
python-semantic-release = "^7.25.2"
|
||||||
pylint = "^2.12.2"
|
pylint = "^2.12.2"
|
||||||
black = { version = "^22.1.0", allow-prereleases = true }
|
black = { version = "^22.1.0", allow-prereleases = true }
|
||||||
eth-erc20 = ">0.1.2a3,<0.2.0"
|
|
||||||
eth_tester = "0.5.0b3"
|
eth_tester = "0.5.0b3"
|
||||||
py-evm = "0.3.0a20"
|
py-evm = "0.3.0a20"
|
||||||
rlp = "2.0.1"
|
rlp = "2.0.1"
|
||||||
|
Loading…
Reference in New Issue
Block a user