Skip to content

Commit

Permalink
Remove dependency on maturin (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkaMaul authored Dec 11, 2024
1 parent cc26c8a commit a31282d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Moved `maturin` dependency from main project dependencies to development dependencies
since it's only needed for development tasks ([88](https://github.com/trailofbits/rfc3161-client/pull/88))

## [0.1.1] - 2024-12-10

### Changed
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ version = "0.1.1"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Trail of Bits", email = "opensource@trailofbits.com" }]
dependencies = ["maturin>=1.7,<2.0", "cryptography>=44,<45"]
dependencies = ["cryptography>=44,<45"]

[project.optional-dependencies]
doc = []
test = ["pytest", "pytest-cov", "pretend", "coverage[toml]"]
lint = ["ruff >= 0.7,< 0.9"]
dev = ["rfc3161-client[test,lint,doc]"]
dev = ["rfc3161-client[test,lint,doc]", "maturin>=1.7,<2.0"]

[project.urls]
Homepage = "https://pypi.org/project/rfc3161-client"
Expand Down

0 comments on commit a31282d

Please sign in to comment.