Skip to content

Commit

Permalink
chore: bump 0.5.0 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotPeopling2day authored Sep 9, 2022
1 parent f590188 commit 1f9cdb8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ $ ape plugins list
```

* Python Version: x.x.x
* OS: osx/linux/win
* OS: macOS/linux/win

### What went wrong?

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest] # eventually add `windows-latest`
python-version: [3.7, 3.8, 3.9, '3.10']
python-version: [3.8, 3.9, "3.10"]

steps:
- uses: actions/checkout@v2
Expand All @@ -68,9 +68,9 @@ jobs:
python -m pip install --upgrade pip
pip install .[test]
# - name: Run Tests
# run: pytest -m "not fuzzing" -n 0 -s --cov
#
- name: Run Tests
run: pytest -m "not fuzzing" -n 0 -s --cov

# NOTE: uncomment this block after you've marked tests with @pytest.mark.fuzzing
# fuzzing:
# runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ repos:


default_language_version:
python: python3.8
python: python3.9
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Ape Binance Smart Chain Ecosystem Plugin
# Quick Start

Ecosystem Plugin for Binance Smart Chain support in Ape
Ecosystem Plugin for Binance Smart Chain support in Ape.

## Dependencies

* [python3](https://www.python.org/downloads) version 3.7.2 or greater, python3-dev
* [python3](https://www.python.org/downloads) version 3.8 or greater, python3-dev

## Installation

Expand Down Expand Up @@ -49,11 +49,3 @@ Installing this plugin adds support for the Binance Smart Chain ecosystem:
```bash
ape console --network bsc:mainnet
```

## Development

Comments, questions, criticisms and pull requests are welcomed.

## License

This project is licensed under the [Apache 2.0](LICENSE).
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ write_to = "ape_bsc/version.py"

[tool.black]
line-length = 100
target-version = ['py37', 'py38', 'py39', 'py310']
target-version = ['py38', 'py39', 'py310']
include = '\.pyi?$'

[tool.pytest.ini_options]
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,9 @@
url="https://github.com/ApeWorX/ape-bsc",
include_package_data=True,
install_requires=[
"importlib-metadata ; python_version<'3.8'",
"eth-ape>=0.4.0,<0.5.0",
"eth-ape>=0.5.0,<0.6",
],
python_requires=">=3.7.2,<4",
python_requires=">=3.8,<4",
extras_require=extras_require,
py_modules=["ape_bsc"],
license="Apache-2.0",
Expand All @@ -72,7 +71,6 @@
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 1f9cdb8

Please sign in to comment.