mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-12 16:10:57 +00:00
apply template updates found following merge with eth-typing (#81)
* apply template updates found following merge with eth-typing * add build as a dev dependency * remove timeout from pytest.ini, it doesn't do anything without pytest-timeout as a dep
This commit is contained in:
4
.github/pull_request_template.md
vendored
4
.github/pull_request_template.md
vendored
@ -1,7 +1,7 @@
|
|||||||
### What was wrong?
|
### What was wrong?
|
||||||
|
|
||||||
Related to Issue #
|
Related to Issue #
|
||||||
Closes Issue #
|
Closes #
|
||||||
|
|
||||||
### How was it fixed?
|
### How was it fixed?
|
||||||
|
|
||||||
@ -10,7 +10,7 @@ Closes Issue #
|
|||||||
|
|
||||||
- [ ] Add or update documentation related to these changes
|
- [ ] Add or update documentation related to these changes
|
||||||
|
|
||||||
- [ ] Add entry to the [release notes](https://github.com/ethereum/web3.py/blob/master/newsfragments/README.md)
|
- [ ] Add entry to the [release notes](https://github.com/ethereum/<REPO_NAME>/blob/master/newsfragments/README.md)
|
||||||
|
|
||||||
#### Cute Animal Picture
|
#### Cute Animal Picture
|
||||||
|
|
||||||
|
|||||||
@ -55,7 +55,7 @@ master_doc = "index"
|
|||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = "<PROJECT_NAME>"
|
project = "<PROJECT_NAME>"
|
||||||
copyright = "2020, The Ethereum Foundation"
|
copyright = "2019-2023, The Ethereum Foundation"
|
||||||
|
|
||||||
__version__ = setup_version
|
__version__ = setup_version
|
||||||
# The version info for the project you're documenting, acts as replacement for
|
# The version info for the project you're documenting, acts as replacement for
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
[tool.towncrier]
|
[tool.towncrier]
|
||||||
# Read https://github.com/ethereum/<REPO_NAME>/newsfragments/README.md for instructions
|
# Read https://github.com/ethereum/<REPO_NAME>/blob/master/newsfragments/README.md for instructions
|
||||||
package = "<MODULE_NAME>"
|
package = "<MODULE_NAME>"
|
||||||
filename = "docs/release_notes.rst"
|
filename = "docs/release_notes.rst"
|
||||||
directory = "newsfragments"
|
directory = "newsfragments"
|
||||||
|
|||||||
@ -3,7 +3,6 @@ addopts= -v --showlocals --durations 10
|
|||||||
xfail_strict=true
|
xfail_strict=true
|
||||||
log_format = %(levelname)8s %(asctime)s %(filename)20s %(message)s
|
log_format = %(levelname)8s %(asctime)s %(filename)20s %(message)s
|
||||||
log_date_format = %m-%d %H:%M:%S
|
log_date_format = %m-%d %H:%M:%S
|
||||||
timeout = 300
|
|
||||||
|
|
||||||
[pytest-watch]
|
[pytest-watch]
|
||||||
runner= pytest --failed-first --maxfail=1 --no-success-flaky-report
|
runner= pytest --failed-first --maxfail=1 --no-success-flaky-report
|
||||||
|
|||||||
5
setup.py
5
setup.py
@ -27,6 +27,7 @@ extras_require = {
|
|||||||
"bumpversion>=0.5.3",
|
"bumpversion>=0.5.3",
|
||||||
"pytest-watch>=4.1.0",
|
"pytest-watch>=4.1.0",
|
||||||
"tox>=4.0.0",
|
"tox>=4.0.0",
|
||||||
|
"build>=0.9.0",
|
||||||
"wheel",
|
"wheel",
|
||||||
"twine",
|
"twine",
|
||||||
"ipython",
|
"ipython",
|
||||||
@ -59,7 +60,7 @@ setup(
|
|||||||
install_requires=[
|
install_requires=[
|
||||||
"eth-utils>=2",
|
"eth-utils>=2",
|
||||||
],
|
],
|
||||||
python_requires=">=3.7, <4",
|
python_requires=">=3.7.2, <4",
|
||||||
extras_require=extras_require,
|
extras_require=extras_require,
|
||||||
py_modules=["<MODULE_NAME>"],
|
py_modules=["<MODULE_NAME>"],
|
||||||
license="MIT",
|
license="MIT",
|
||||||
@ -72,8 +73,6 @@ setup(
|
|||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Natural Language :: English",
|
"Natural Language :: English",
|
||||||
"Operating System :: MacOS",
|
|
||||||
"Operating System :: POSIX",
|
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
|
|||||||
Reference in New Issue
Block a user