Skip to content

Commit

Permalink
Merge pull request #1277 from skellet0r/chore/bump-deps
Browse files Browse the repository at this point in the history
chore: bump dependencies
  • Loading branch information
iamdefinitelyahuman authored Oct 12, 2021
2 parents c56f5cc + 7532c8a commit c2ab629
Show file tree
Hide file tree
Showing 9 changed files with 227 additions and 219 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/core-ganache-3.7.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Core Ganache (py37)
on: ["push", "pull_request"]

env:
ETHERSCAN_TOKEN: 9MKURTHE8FNA9NRUUJBHMUEVY6IQ5K1EGY
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WEB3_INFURA_PROJECT_ID: ddddf0c53f254d36aa76ce4e3a6a390e

jobs:
py37core:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Cache Solidity Installations
uses: actions/cache@v2
with:
path: |
~/.solcx
~/.vvm
key: ${{ runner.os }}-compiler-cache

- name: Setup Node.js
uses: actions/setup-node@v1

- name: Install Ganache
run: npm install -g ganache-cli@6.12.2

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

- name: Install Tox
run: pip install tox

- name: Run Tox
run: tox -e py37

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
44 changes: 44 additions & 0 deletions .github/workflows/core-ganache-3.8.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Core Ganache (py38)
on: ["push", "pull_request"]

env:
ETHERSCAN_TOKEN: 9MKURTHE8FNA9NRUUJBHMUEVY6IQ5K1EGY
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WEB3_INFURA_PROJECT_ID: 21317ddb5ded42ce8d40c7d78f90474f

jobs:
py38core:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Cache Solidity Installations
uses: actions/cache@v2
with:
path: |
~/.solcx
~/.vvm
key: ${{ runner.os }}-compiler-cache

- name: Setup Node.js
uses: actions/setup-node@v1

- name: Install Ganache
run: npm install -g ganache-cli@6.12.2

- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install Tox
run: pip install tox

- name: Run Tox
run: tox -e py38

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
49 changes: 49 additions & 0 deletions .github/workflows/core-ganache-3.9.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Core Ganache (py39)
on: ["push", "pull_request"]

env:
ETHERSCAN_TOKEN: 9MKURTHE8FNA9NRUUJBHMUEVY6IQ5K1EGY
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WEB3_INFURA_PROJECT_ID: 1668fecbc9c242d58253476103a42ce9

jobs:
py39core:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]

steps:
- uses: actions/checkout@v2

- name: Cache Solidity Installations
uses: actions/cache@v2
with:
path: |
~/.solcx
~/.vvm
key: ${{ runner.os }}-compiler-cache

- name: Setup Node.js
uses: actions/setup-node@v1

- name: Install Ganache
run: npm install -g ganache-cli@6.12.2

- name: Setup Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: Install Tox
run: pip install tox

- name: Run Tox
run: tox -e py39

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
129 changes: 0 additions & 129 deletions .github/workflows/core-ganache.yaml

This file was deleted.

8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.1.0
rev: v4.0.1
hooks:
- id: check-yaml

- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.8.0
rev: v5.9.3
hooks:
- id: isort

- repo: https://github.com/psf/black
rev: 20.8b1
rev: 21.9b0
hooks:
- id: black
name: black

- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.3
rev: 3.9.2
hooks:
- id: flake8

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Arguments from the command line can now be passed to brownie scripts. ([#398](https://github.com/eth-brownie/brownie/issues/398))
- Fix etherscan verification w/ new solidity flattener ([#1283](https://github.com/eth-brownie/brownie/pull/1283))
- Drop py36 support and add py39 to CI/dev tooling ([#1289](https://github.com/eth-brownie/brownie/pull/1289))
- Bump dependencies ([#1277](https://github.com/eth-brownie/brownie/pull/1277))

## [1.16.4](https://github.com/eth-brownie/brownie/tree/v1.16.4) - 2021-09-21
### Added
Expand Down
Loading

0 comments on commit c2ab629

Please sign in to comment.