forked from Chia-Network/chia-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HDDcoin v3.0.0 Beta-1 Release
- Loading branch information
Showing
2,569 changed files
with
625,314 additions
and
276,805 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[run] | ||
branch=True | ||
relative_files=True | ||
source_pkgs= | ||
hddcoin | ||
tests | ||
concurrency=multiprocessing | ||
parallel=True | ||
|
||
[report] | ||
precision = 1 | ||
exclude_lines = | ||
pragma: no cover | ||
abc\.abstractmethod | ||
typing\.overload | ||
^\s*\.\.\.\s*$ | ||
if typing.TYPE_CHECKING: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
exclude = ./typings/**/* | ||
ignore = E203,W503 | ||
per-file-ignores = | ||
tests/util/build_network_protocol_files.py:F405 | ||
tests/util/test_network_protocol_files.py:F405 | ||
tests/util/test_network_protocol_json.py:F405 | ||
tests/util/protocol_messages_json.py:E501 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* @HDDcoin-Network/required-reviewers | ||
/PRETTY_GOOD_PRACTICES.md @altendky @HDDcoin-Network/required-reviewers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!-- Merging Requirements: | ||
- Please give your PR a title that is release-note friendly | ||
- In order to be merged, you must add the most appropriate category Label (Added, Changed, Fixed) to your PR | ||
--> | ||
<!-- Explain why this is an improvement (Does this add missing functionality, improve performance, or reduce complexity?) --> | ||
### Purpose: | ||
|
||
|
||
|
||
<!-- Does this PR introduce a breaking change? --> | ||
### Current Behavior: | ||
|
||
|
||
|
||
### New Behavior: | ||
|
||
|
||
|
||
<!-- As we aim for complete code coverage, please include details regarding unit, and regression tests --> | ||
### Testing Notes: | ||
|
||
|
||
|
||
<!-- Attach any visual examples, or supporting evidence (attach any .gif/video/console output below) --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: "Install hddcoin-blockchain" | ||
|
||
description: "Run the platform appropriate installer script." | ||
|
||
inputs: | ||
python-version: | ||
description: "Value to be set for INSTALL_PYTHON_VERSION." | ||
required: false | ||
default: "" | ||
development: | ||
description: "Install development dependencies." | ||
required: false | ||
default: "" | ||
legacy_keyring: | ||
description: "Install legacy keyring dependencies." | ||
required: false | ||
default: "" | ||
automated: | ||
description: "Automated install, no questions." | ||
required: false | ||
default: "true" | ||
command-prefix: | ||
description: "Text to place before the command such as `arch -arm64` for non-native macOS runners." | ||
required: false | ||
default: "" | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Run install script (macOS, Ubuntu) | ||
if: runner.os == 'macos' || runner.os == 'linux' | ||
shell: bash | ||
env: | ||
INSTALL_PYTHON_VERSION: ${{ inputs.python-version }} | ||
run: | | ||
${{ inputs.command-prefix }} sh install.sh ${{ inputs.development && '-d' || '' }} ${{ inputs.legacy_keyring && '-l' || '' }} ${{ inputs.automated == 'true' && '-a' || '' }} | ||
- name: Run install script (Windows) | ||
if: runner.os == 'windows' | ||
shell: pwsh | ||
env: | ||
INSTALL_PYTHON_VERSION: ${{ inputs.python-version }} | ||
run: | | ||
${{ inputs.command-prefix }} ./Install.ps1 ${{ inputs.development && '-d' || '' }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.