mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-10 12:29:49 +03:00
523a5d4cf5
* Add Python 3.11 to CI * 3.11 in the install scripts * ${{ format('{0}.0-alpha - {0}.X', matrix.python) }} * bump chiavdf and chiabip158 for releases with 3.11 wheels * also bump blspy and clvm-tools-rs * drop the extra .X for the python setup version * chia_rs==0.1.13 * Update install.sh * pyinstaller==5.5 * less mutable defaults * memory_profiler * assert sqlite3.threadsafety >= 1 * create tasks for stopping services (cherry picked from commit 3384714f2e3e0bdc8c3d3741027e9e4fb69a6002) * psutil==5.9.4 * drop memory_profiler transitive dep since it now supports 3.11 * drop redundant pre-release python getting incantation * watchdog==2.2.0 * black for py311
19 lines
432 B
TOML
19 lines
432 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=4.1.2"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools_scm]
|
|
fallback_version = "unknown-no-.git-directory"
|
|
local_scheme = "no-local-version"
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']
|
|
include = '''
|
|
^/(
|
|
[^/]*.py
|
|
| (benchmarks|build_scripts|chia|tests|tools)/.*\.pyi?
|
|
)$
|
|
'''
|
|
exclude = ''
|