Skip to content

Commit 0615530

Browse files
committed
Mark lib deps using tilda version specifiers
This allows users of the lib to use newer versions of these libraries without us having to cut a new release
1 parent df84657 commit 0615530

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

docs/changelog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
Changelog
55
=========
66

7+
- :support:`197` Mark dependencies using tilde version specifiers. This is to allow user of pydis core to use newer versions of these libraries without us having to cut a new release.
8+
79
- :release:`10.4.0 <26th October 2023>`
810
- :support:`196` Bump aiodns to :literal-url:`3.1.1 <https://github.com/saghul/aiodns/releases/tag/v3.1.1>`.
911
- :support:`196` Bump many development dependencies.

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ keywords = ["bot", "discord", "discord.py"]
2525
[tool.poetry.dependencies]
2626
python = "3.10.* || 3.11.*"
2727

28-
"discord.py" = "2.3.2"
28+
"discord.py" = "~=2.3.2"
2929
async-rediscache = { version = "1.0.0rc2", extras = ["fakeredis"], optional = true }
3030
pydantic = ">=1.7.4,<3.0.0"
31-
statsd = "4.0.1"
32-
aiodns = "3.1.1"
31+
statsd = "~=4.0"
32+
aiodns = "~=3.1"
3333

3434
[tool.poetry.extras]
3535
async-rediscache = ["async-rediscache"]

0 commit comments

Comments
 (0)