Skip to content

Commit

Permalink
120240430.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0thernet committed Apr 30, 2024
1 parent 0414b12 commit 83c2984
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 354 deletions.
35 changes: 16 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[build-system]
requires = ["poetry-core"]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "substrate"
version = "120240418.0.10"
version = "120240430.0.0"
description = "Substrate Python SDK"
readme = "README.md"
authors = ["vprtwn <[email protected]>", "liamgriffiths <[email protected]>"]
authors = [ "vprtwn <[email protected]>", "liamgriffiths <[email protected]>",]
[[tool.poetry.packages]]
include = "substrate"

[tool.pyright]
typeCheckingMode = "basic"
pythonVersion = "3.7"
exclude = [".venv"]
exclude = [ ".venv",]

[tool.mypy]
pretty = true
Expand All @@ -36,6 +36,12 @@ cache_fine_grained = true
warn_unused_ignores = false
warn_redundant_casts = false

[tool.ruff]
line-length = 120
output-format = "grouped"
target-version = "py310"
exclude = [ "examples/notebooks",]

[tool.poetry.dependencies]
python = ">=3.9"
networkx = ">=3.2.1"
Expand All @@ -44,33 +50,24 @@ distro = ">=1.8.0"
typing-extensions = "^4.10.0"
pydantic = ">=1.0.0"

[tool.ruff]
line-length = 120
output-format = "grouped"
target-version = "py310"
exclude = ["examples/notebooks"]

[tool.ruff.lint]
ignore-init-module-imports = true
ignore = ["B006", "T201", "T203", "ARG002", "ARG001"]
unfixable = ["T201", "T203"]
select = ["I", "B", "F401", "E722", "ARG", "TCH004"]
ignore = [ "B006", "T201", "T203", "ARG002", "ARG001",]
unfixable = [ "T201", "T203",]
select = [ "I", "B", "F401", "E722", "ARG", "TCH004",]

[tool.ruff.format]
docstring-code-format = true

[tool.pytest.ini_options]
markers = [
"unit: tests intended to be run against only local code - no external integrations",
"e2e: tests intended to encapsulate the entire lifecycle of an interaction with the substrate system",
]
markers = [ "unit: tests intended to be run against only local code - no external integrations", "e2e: tests intended to encapsulate the entire lifecycle of an interaction with the substrate system",]

[tool.ruff.lint.isort]
length-sort = true
length-sort-straight = true
combine-as-imports = true
extra-standard-library = ["typing_extensions"]
known-first-party = ["substrate", "tests"]
extra-standard-library = [ "typing_extensions",]
known-first-party = [ "substrate", "tests",]

[tool.poetry.group.dev.dependencies]
pyright = ">=1.1.342"
Expand Down
2 changes: 1 addition & 1 deletion scripts/sync_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def ok(message):
print("\033[32m✓\033[0m", message)


SDK_VERSION = "1.0.10"
SDK_VERSION = "1.0.0"

# Update version
version_path = "substrate/GEN_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion substrate/GEN_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20240418.20240429
20240430.20240430
2 changes: 1 addition & 1 deletion substrate/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
꩜ Substrate Python SDK
20240418.20240429
20240430.20240430
"""

from .nodes import (
Expand Down
Loading

0 comments on commit 83c2984

Please sign in to comment.