Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove pythx #1733

Merged
merged 3 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Core Ganache (py37)
name: Core Ganache (py10)
on: ["push", "pull_request"]

env:
Expand All @@ -7,11 +7,11 @@ env:
WEB3_INFURA_PROJECT_ID: ddddf0c53f254d36aa76ce4e3a6a390e

jobs:
py37core:
py310core:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Cache Solidity Installations
uses: actions/cache@v2
Expand All @@ -27,16 +27,16 @@ jobs:
- name: Install Ganache
run: npm install -g [email protected]

- name: Setup Python 3.7
uses: actions/setup-python@v2
- name: Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: "3.10"

- name: Install Tox
run: pip install tox

- name: Run Tox
run: tox -e py37
run: tox -e py310

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
Expand Down
2 changes: 0 additions & 2 deletions brownie/_cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
accounts Manage local accounts
networks Manage network settings
gui Load the GUI to view opcodes and test coverage
analyze Find security vulnerabilities using the MythX API

Options:
--help -h Display this message
Expand All @@ -34,7 +33,6 @@


def main():

print(f"Brownie v{__version__} - Python development framework for Ethereum\n")

if "--version" in sys.argv:
Expand Down
Loading
Loading