Skip to content

Commit

Permalink
ci: re-enable testing on Windows with Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
elopez committed Jan 11, 2024
1 parent e6b2f49 commit 234be4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ jobs:
# brownie does not install correctly with Python 3.12
- python: 3.12
type: brownie
# TODO: review failure executing npx on Windows
- os: windows-2022
python: 3.12
steps:
- uses: actions/checkout@v4
- name: Set up shell
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
author="Trail of Bits",
version="0.3.4",
packages=find_packages(),
python_requires=">=3.8",
# Python 3.12.0 on Windows suffers from https://github.com/python/cpython/issues/109590
# breaking some of our integrations. The issue is fixed in 3.12.1
python_requires=">=3.8,!=3.12.0",
install_requires=["pycryptodome>=3.4.6", "cbor2", "solc-select>=v1.0.4", "toml>=0.10.2"],
extras_require={
"test": [
Expand Down

0 comments on commit 234be4f

Please sign in to comment.