You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I get the following warnings when I use plimc:
XXX/venvs/plim/lib/python3.9/site-packages/scss/selector.py:26: FutureWarning: Possible nested set at position 329
SELECTOR_TOKENIZER = re.compile(r'''
XXX/venvs/plim/lib/python3.9/site-packages/plim/console.py:48: PkgResourcesDeprecationWarning: Parameters to load are deprecated. Call .resolve and .require separately.
preprocessor = EntryPoint.parse('x={}'.format(preprocessor_path)).load(False)
The first one depends on pyScss package. There's a fix in the codebase but they didn't update the package yet; you may want to watch it and release a new version as soon as they publish an update.
For the second, looking at the pkg_resources code, it seems that you can just replace .load(False) with .resolve().
The text was updated successfully, but these errors were encountered:
I know it's been a while since the issue was opened, but I see that pyScss merged the fix and the only remaining thing is the warnings on Plim's side. If you happen to have a patched version, I'm happy to merge it.
XXX/venvs/plim/lib/python3.9/site-packages/scss/selector.py:26: FutureWarning: Possible nested set at position 329
SELECTOR_TOKENIZER = re.compile(r'''
XXX/venvs/plim/lib/python3.9/site-packages/plim/console.py:48: PkgResourcesDeprecationWarning: Parameters to load are deprecated. Call .resolve and .require separately.
preprocessor = EntryPoint.parse('x={}'.format(preprocessor_path)).load(False)
Hi, I get the following warnings when I use
plimc
:The first one depends on pyScss package. There's a fix in the codebase but they didn't update the package yet; you may want to watch it and release a new version as soon as they publish an update.
For the second, looking at the pkg_resources code, it seems that you can just replace
.load(False)
with.resolve()
.The text was updated successfully, but these errors were encountered: