Skip to content

Commit

Permalink
Merge branch 'main' into dm/fix-pypy
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkaMaul committed Dec 11, 2024
2 parents a929982 + a31282d commit a92eb75
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))

### Fixed

- The project now correctly runs tests with PyPy
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 a92eb75

Please sign in to comment.