Skip to content

Commit

Permalink
Replace appdirs with platformdirs
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Mar 31, 2024
1 parent c3ffc15 commit 3fa9978
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ CHANGES
in progress
===========
- Add support for Python 3.11 and 3.12
- Replace ``appdirs`` with ``platformdirs``

2022-08-05 0.13.1
=================
Expand Down
2 changes: 1 addition & 1 deletion beradio/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from uuid import uuid4

import json_store
from appdirs import user_data_dir
from platformdirs import user_data_dir

from beradio.gibberish import generate_word

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"paho-mqtt<2",
"bencode.py<5",
"docopt<1",
"appdirs<2",
"platformdirs<5",
"json-store>=3.1,<4",
# 'terkin==0.0.1',
]
Expand Down

0 comments on commit 3fa9978

Please sign in to comment.