Skip to content

Commit 234be4f

Browse files
committed
ci: re-enable testing on Windows with Python 3.12
1 parent e6b2f49 commit 234be4f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ jobs:
3636
# brownie does not install correctly with Python 3.12
3737
- python: 3.12
3838
type: brownie
39-
# TODO: review failure executing npx on Windows
40-
- os: windows-2022
41-
python: 3.12
4239
steps:
4340
- uses: actions/checkout@v4
4441
- name: Set up shell

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
author="Trail of Bits",
1414
version="0.3.4",
1515
packages=find_packages(),
16-
python_requires=">=3.8",
16+
# Python 3.12.0 on Windows suffers from https://github.com/python/cpython/issues/109590
17+
# breaking some of our integrations. The issue is fixed in 3.12.1
18+
python_requires=">=3.8,!=3.12.0",
1719
install_requires=["pycryptodome>=3.4.6", "cbor2", "solc-select>=v1.0.4", "toml>=0.10.2"],
1820
extras_require={
1921
"test": [

0 commit comments

Comments
 (0)