Skip to content

Commit

Permalink
Only require setuptools at runtime on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mstimberg committed Nov 13, 2024
1 parent fad9db5 commit 9d5de55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The following packages need to be installed to use Brian 2 (cf. [`pyproject.toml
* Cython >= 0.29.21
* PyParsing
* Jinja2 >= 2.7
* setuptools >= 61
* setuptools >= 61 (only required on Windows)
* py-cpuinfo (only required on Windows)

For full functionality, you might also want to install:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ dependencies = [
'sympy>=1.2',
'pyparsing',
'jinja2>=2.7',
'setuptools>=61;platform_system=="Windows"',
'py-cpuinfo;platform_system=="Windows"',
'setuptools>=61',
'packaging',
]
dynamic = ["version", "readme"]
Expand Down

0 comments on commit 9d5de55

Please sign in to comment.