Skip to content

Commit cc395b0

Browse files
committedDec 31, 2024
Updating dependencies
1 parent 962d6d3 commit cc395b0

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55

66
## Unreleased
77

8+
### Changed
9+
- Dependencies are now `>=` rather than `~=` to better align with Python libraries best practices.
10+
811
## [1.3] - 2024-10-04
912

1013
### Fixed

‎pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ authors= [
2020
]
2121
requires-python = ">=3.8"
2222
dependencies = [
23-
"arpy~=2.3.0",
24-
"cryptography~=43.0.1",
25-
"zstandard[cffi]~=0.23.0"
23+
"arpy>=2.3.0",
24+
"cryptography>=43.0.1",
25+
"zstandard[cffi]>=0.23.0"
2626
]
2727
keywords = [
2828
"cross-platform", "apt-repository", "yum-repositories",

0 commit comments

Comments
 (0)
Please sign in to comment.