-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from iamdefinitelyahuman/repo-housekeeping
Repo housekeeping
- Loading branch information
Showing
25 changed files
with
468 additions
and
423 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
--- | ||
name: Bug Report | ||
about: Report an error that you've encountered. | ||
--- | ||
### Environment information | ||
|
||
* `py-solc-x` Version: x.x.x | ||
* `solc` Version: x.x.x | ||
* Python Version: x.x.x | ||
* OS: osx/linux/win | ||
|
||
### What was wrong? | ||
|
||
Please include information like: | ||
|
||
* what command you ran | ||
* the code that caused the failure (see [this link](https://help.github.com/articles/basic-writing-and-formatting-syntax/) for help with formatting code) | ||
* full output of the error you received | ||
|
||
### How can it be fixed? | ||
|
||
Fill this in if you know how the bug could be fixed. |
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,14 @@ | ||
--- | ||
name: Feature Request | ||
about: Request a new feature, or an improvement to existing functionality. | ||
--- | ||
### Overview | ||
Provide a simple overview of what you wish to see added. Please include: | ||
|
||
* What you are trying to do | ||
* Why solcx's current functionality is inadequate to address your goal | ||
|
||
### Specification | ||
Describe the syntax and semantics of how you would like to see this feature implemented. The more detailed the better! | ||
|
||
Remember, your feature is much more likely to be included if it does not involve any breaking changes. |
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 |
---|---|---|
@@ -1,11 +1,14 @@ | ||
### What was wrong / missing? | ||
### What I did | ||
|
||
Related issue: # | ||
|
||
### How I did it | ||
|
||
### How was it fixed / added? | ||
### How to verify it | ||
|
||
### Checklist | ||
|
||
|
||
#### Cute Animal Picture | ||
|
||
> put a cute animal picture here. | ||
- [ ] I have confirmed that my PR passes all linting checks | ||
- [ ] I have included test cases | ||
- [ ] I have updated the documentation (README.md) | ||
- [ ] I have added an entry to the changelog |
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
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
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,20 @@ | ||
[tool.black] | ||
line-length = 100 | ||
target-version = ['py36', 'py37', 'py38'] | ||
include = '\.pyi?$' | ||
exclude = ''' | ||
/( | ||
\.eggs | ||
| \.git | ||
| \.hg | ||
| \.mypy_cache | ||
| \.tox | ||
| \.venv | ||
| _build | ||
| buck-out | ||
| build | ||
| dist | ||
| env | ||
| venv | ||
)/ | ||
''' |
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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
black==19.10b0 | ||
coveralls==1.9.2 | ||
pytest>=5.0.0 | ||
pytest-cov>=2.7.1 | ||
flake8==3.7.9 | ||
isort==4.3.21 | ||
pytest==5.3.2 | ||
pytest-cov==2.8.1 | ||
semantic_version>=2.8.1,<3 | ||
tox==3.14.2 | ||
tqdm>=4.41.0,<5.0.0 | ||
twine==1.13.0 | ||
requests>=2.19.0,<3 |
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,10 @@ | ||
[flake8] | ||
max-line-length = 100 | ||
ignore = E203,W503 | ||
|
||
[tool:isort] | ||
force_grid_wrap = 0 | ||
include_trailing_comma = True | ||
line_length = 100 | ||
multi_line_output = 3 | ||
use_parentheses = True |
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
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
Oops, something went wrong.