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? |
0 replies
|
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 |
0 replies
|
Great! It's working now! Many thanks! ;-) |
0 replies
|
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!! |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
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
All reactions