bump to python 3.8

pull/1178/head
alpharush 3 years ago
parent 21d5dba402
commit d3eea7b64e
  1. 4
      .github/workflows/IR.yml
  2. 4
      .github/workflows/black.yml
  3. 4
      .github/workflows/ci.yml
  4. 4
      .github/workflows/detectors.yml
  5. 4
      .github/workflows/features.yml
  6. 4
      .github/workflows/linter.yml
  7. 4
      .github/workflows/parser.yml
  8. 4
      .github/workflows/pylint.yml
  9. 4
      .github/workflows/read_storage.yml
  10. 2
      README.md
  11. 2
      plugin_example/setup.py
  12. 4
      scripts/ci_test_simil.sh
  13. 7
      setup.py

@ -26,10 +26,10 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.6
python-version: 3.8
- name: Install dependencies
run: |

@ -22,10 +22,10 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.6
python-version: 3.8
- name: Install dependencies
run: |

@ -58,10 +58,10 @@ jobs:
echo 'C:\msys64\mingw64\bin' >> "$GITHUB_PATH"
echo 'C:\msys64\usr\bin' >> "$GITHUB_PATH"
- name: Set up Python 3.6
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.6
python-version: 3.8
- name: Install dependencies
run: |
pip install ".[dev]"

@ -26,10 +26,10 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.6
python-version: 3.8
- name: Install dependencies
run: |

@ -26,10 +26,10 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.6
python-version: 3.8
- name: Install dependencies
run: |

@ -22,10 +22,10 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.6
python-version: 3.8
- name: Install dependencies
run: |

@ -26,10 +26,10 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.6
python-version: 3.8
- name: Install dependencies
run: |

@ -22,10 +22,10 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.6
python-version: 3.8
- name: Install dependencies
run: |

@ -28,10 +28,10 @@ jobs:
- name: Install ganache
run: npm install --global ganache
- name: Set up Python 3.6
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.8
- name: Install python dependencies
run: |

@ -165,7 +165,7 @@ See the [Tool documentation](https://github.com/crytic/slither/wiki/Tool-Documen
## How to install
Slither requires Python 3.6+ and [solc](https://github.com/ethereum/solidity/), the Solidity compiler.
Slither requires Python 3.8+ and [solc](https://github.com/ethereum/solidity/), the Solidity compiler.
### Using Pip

@ -7,7 +7,7 @@ setup(
author="Trail of Bits",
version="0.0",
packages=find_packages(),
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=["slither-analyzer==0.1"],
entry_points={
"slither_analyzer.plugin": "slither my-plugin=slither_my_plugin:make_plugin",

@ -2,8 +2,8 @@
### Install requisites
pip3.6 install pybind11
pip3.6 install https://github.com/facebookresearch/fastText/archive/0.2.0.zip
pip3.8 install pybind11
pip3.8 install https://github.com/facebookresearch/fastText/archive/0.2.0.zip
### Test slither-simil

@ -10,7 +10,7 @@ setup(
author="Trail of Bits",
version="0.8.3",
packages=find_packages(),
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=[
"prettytable>=0.7.2",
"pysha3>=1.0.2",
@ -21,11 +21,10 @@ setup(
"dev": [
"black==22.3.0",
"pylint==2.13.4",
"pytest==7.0.1",
"pytest",
"pytest-cov",
"deepdiff",
"typing_extensions==4.1.1",
"importlib_metadata==4.8.3",
"numpy",
"solc-select>=v1.0.0b1",
]
},

Loading…
Cancel
Save