-
Notifications
You must be signed in to change notification settings - Fork 11
Replace deprecated appdirs with platformdirs, fix config path lookup with non conda-based environments
#113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
bf4dcf8
3e3fc97
e66b5fa
8739917
615a34b
7b318ff
76e9405
273966b
77f55e3
59cde9c
f8b075f
ed052c8
3b3a32e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,7 +24,7 @@ classifiers = [ | |
| "Programming Language :: Python :: 3.11", | ||
| ] | ||
| dependencies = [ | ||
| "appdirs", | ||
| "platformdirs", | ||
| "networkx", | ||
| "pyyaml", | ||
| "requests", | ||
|
|
@@ -48,9 +48,6 @@ empack = "empack.cli.main:app" | |
| [project.urls] | ||
| Homepage = "https://github.com/emscripten-forge/empack" | ||
|
|
||
| [tool.hatch.build.targets.wheel.shared-data] | ||
| config = "share/empack" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I hope I won't be too annoying to you on this. I have a preference for this to stay 🫤 I believe we should make sure we can find this path when using pyenv. It seems jupyter has something like that https://github.com/jupyter/jupyter_core/blob/main/jupyter_core/paths.py#L102 for finding whether or not it should use user-level paths or conda environment paths. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Absolutely not! :D I'd also love to ensure |
||
|
|
||
| [tool.hatch.build.targets.sdist] | ||
| exclude = [ | ||
| ".github", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems the CI says appdirs is still being used
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will be addressed by emscripten-forge/pyjs-code-runner#15, marking for completeness :)