Skip to content

Commit

Permalink
Fixed #205: only require delocate on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed Sep 23, 2024
1 parent b2a4e38 commit 727c125
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- n/a
### Changed

- `delocate` dependency only required on Windows platform

## [3.5.0]

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [
"setuptools == 74.1.1",
"wheel == 0.44.0",
"cython == 3.0.11",
"delocate==0.11.0",
"delocate==0.11.0 ; platform_system == 'Windows'",
]
build-backend = "setuptools.build_meta"

Expand Down Expand Up @@ -70,7 +70,7 @@ build = [
"setuptools == 74.1.1",
"wheel == 0.44.0",
"cython == 3.0.11",
"delocate==0.11.0",
"delocate==0.11.0 ; platform_system == 'Windows'",
]
dev = [
"pre-commit==3.8.0",
Expand Down

0 comments on commit 727c125

Please sign in to comment.