Skip to content

Commit

Permalink
breaking change: drop support for python 3.8 (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark authored Dec 7, 2023
1 parent dd266b2 commit b9bc79e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: ["macos-latest", "ubuntu-latest", "windows-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
parallel: ["", "--test-parallel"]
storage-layout: ["solidity", "generic"]

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"z3-solver",
]
Expand All @@ -33,7 +33,7 @@ halmos = "halmos.__main__:main"
"Homepage" = "https://github.com/a16z/halmos"

[tool.black]
target-versions = ["py38", "py39", "py310", "py311"]
target-versions = ["py39", "py310", "py311"]

[tool.pytest.ini_options]
# TODO: re-add test_traces.py when we have a better way to support it in CI
Expand Down

0 comments on commit b9bc79e

Please sign in to comment.