Replies: 4 comments
-
@DirkH79 Thank you for pointing this out! I can see where the problem is so let me try some things on my end to see if we can fix this. In the meantime, can I ask if you are executing this within a fresh conda environment? |
Beta Was this translation helpful? Give feedback.
-
Okay, I see that tests are passing for Mac OS X and Linux but, for some reason, failing for Windows. Let me work on this and hopefully have a fix ASAP |
Beta Was this translation helpful? Give feedback.
-
Great! It's working now! Many thanks! ;-) |
Beta Was this translation helpful? Give feedback.
-
Great. For future reference as others are reading this, this was fixed in version 1.2.2 so please make sure you have an equal or newer version. @DirkH79 Thanks for reporting this!! |
Beta Was this translation helpful? Give feedback.
-
Hi, I'm new here and just started working with python. When looking for some powerful data analysis tools for time series data I became aware of stumpy. After installation via conda, I wanted to import it, but I'm always getting a SyntaxError (see output below).
I'm using python 3.6.
Can anyone help?
Many thanks in advance.
Dirk
import stumpy
Traceback (most recent call last):
File "C:\ProgramData\Anaconda3\lib\site-packages\IPython\core\interactiveshell.py", line 3296, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "", line 1, in
import stumpy
File "C:\ProgramData\Anaconda3\lib\site-packages\stumpy_init_.py", line 38, in
module = ast.parse(file_contents)
File "C:\ProgramData\Anaconda3\lib\ast.py", line 35, in parse
return compile(source, filename, mode, PyCF_ONLY_AST)
File "", line 29
Σ_T,
^
SyntaxError: invalid character in identifier
Beta Was this translation helpful? Give feedback.
All reactions