Skip to content

Commit

Permalink
chore: bump python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pandadefi committed Feb 2, 2023
1 parent 3048f16 commit 973726d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ jobs:
with:
fetch-depth: 1

- name: Set up python 3.8
- name: Set up python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9

- name: Set pip cache directory path
id: pip-cache-dir-path
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
- name: Install ganache
run: npm install -g ganache

- name: Set up python 3.8
- name: Set up python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9

- name: Set pip cache directory path
id: pip-cache-dir-path
Expand Down Expand Up @@ -89,10 +89,10 @@ jobs:
- name: Install ganache
run: npm install -g ganache-cli@6.12.1

- name: Set up python 3.8
- name: Set up python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9

- name: Set pip cache directory path
id: pip-cache-dir-path
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/title.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9

- name: Install Dependencies
run: pip install commitizen
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on Ethereum.

To run the project you need:

- Python 3.8 local development environment and Node.js 10.x development environment for Ganache.
- Python 3.9 local development environment and Node.js 10.x development environment for Ganache.
- Brownie local environment setup. See instructions for how to install it
[here](https://eth-brownie.readthedocs.io/en/stable/install.html).
- Local env variables for [Etherscan API](https://etherscan.io/apis) and
Expand Down Expand Up @@ -57,13 +57,13 @@ Any command `in code blocks` is meant to be executed from a Mac/Linux terminal o
- If you're using the WSL
- Wait to install Solidity & Vyper, you'll do this in a later step
- Install [Remote - WSL](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-wsl)
3. Install [Python 3.8](https://www.python.org/downloads/release/python-380/)
3. Install [Python 3.9](https://www.python.org/downloads/release/python-390/)
- Linux: Refer to your distro documentation
- [Mac installer](https://www.python.org/ftp/python/3.8.0/python-3.8.0-macosx10.9.pkg)
- [Windows installer](https://www.python.org/ftp/python/3.8.0/python-3.8.0-amd64.exe)
- [Mac installer](https://www.python.org/ftp/python/3.9.0/python-3.9.0-macosx10.9.pkg)
- [Windows installer](https://www.python.org/ftp/python/3.9.0/python-3.9.0-amd64.exe)
4. [Setup Brownie](https://github.com/eth-brownie/brownie)
- `python3 -m pip install --user pipx`
- Note, if get you an error to the effect of python3 not being installed or recognized, run `python --version`, if it returns back something like `Python 3.8.x` then just replace `python3` with `python` for all python commands in these instructions
- Note, if get you an error to the effect of python3 not being installed or recognized, run `python --version`, if it returns back something like `Python 3.9.x` then just replace `python3` with `python` for all python commands in these instructions
- `python3 -m pipx ensurepath`
- `pipx install eth-brownie`
- If you're on Windows (pure Windows, not WSL), you'll need to install the [C++ Build Tools](https://visualstudio.microsoft.com/visual-cpp-build-tools/) before executing this
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
black==22.6.0
eth-brownie>=1.19.1,<2.0.0
eth-brownie>=1.19.3,<2.0.0

0 comments on commit 973726d

Please sign in to comment.