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
I think I've ran into a variant of #5 and #6, where trying to install this on an ARM Mac machine only retrieves 0.1.0, as the latest build wasn't compiled for ARM (or at least, the CI workflow only targets x86_64).
It looks as if GitHub haven't got GitHub hosted runners for Mac/ARM (actions/runner#805 (comment)), so this might be too out of scope for at least the CI workflow.
Example of trying to force install 0.3.3:
(venv) bevan@Bevans-Air demo-parsing % pip install demoparser==0.3.3
ERROR: Could not find a version that satisfies the requirement demoparser==0.3.3 (from versions: 0.1.0)
ERROR: No matching distribution found for demoparser==0.3.3
(runtime error due to lack of feature as it's outdated
(venv) bevan@Bevans-Air demo-parsing % python dparser.py
Traceback (most recent call last):
File "/Users/bevan/Documents/demo-parsing/dparser.py", line 5, in <module>
events = parser.parse_events("round_end", props=["health"])
TypeError: DemoParser.parse_events() got an unexpected keyword argument 'props'
)
The text was updated successfully, but these errors were encountered:
Thanks for the issue. Yeah the 0.1.0 was probably me just testing around with the CI and not an actual release. I can revisit the CI after im done with a bigger feature for the parser. If you want to try building it from source then it should go something like this:
Looked at the progress they are having with the action and estimated was Q4/23 at the earliest. Yeah don't think this is happening before that (at least this s1 version).
Hi, cheers for this project!
I think I've ran into a variant of #5 and #6, where trying to install this on an ARM Mac machine only retrieves 0.1.0, as the latest build wasn't compiled for ARM (or at least, the CI workflow only targets x86_64).
It looks as if GitHub haven't got GitHub hosted runners for Mac/ARM (actions/runner#805 (comment)), so this might be too out of scope for at least the CI workflow.
Example of trying to force install 0.3.3:
(runtime error due to lack of feature as it's outdated
)
The text was updated successfully, but these errors were encountered: