Hello, I am using Github Actions to automatically ...
# general
m
Hello, I am using Github Actions to automatically publish images to AWS ECR in CI. However, since yesterday I am getting an error for which I do not really find any solutions:
Copy code
There were 2 errors downloading required artifacts:
1. django-decorator-include 3 from git+<https://github.com/nefino/django-decorator-include@develop>
    Failed to spawn a job for cp311-cp311-manylinux_2_26_x86_64: Cannot ignore wheels (use_wheel=False) when resolving for a platform: manylinux_2_26_x86_64-cp-311-cp311
2. django-graphql-auth 0.3.16 from git+<https://github.com/nefino/django-graphql-auth@master>
    Failed to spawn a job for cp311-cp311-manylinux_2_26_x86_64: Cannot ignore wheels (use_wheel=False) when resolving for a platform: manylinux_2_26_x86_64-cp-311-cp311
It is probably rather a problem related to Github actions because it worked fine before yesterday but maybe someone here has an idea how to solve it or why it happens? Thanks in advance!
i
hi! did you ever find a way around this? i'm having a similar problem
h
hello guys 🙂 were you able to find a solution for this? i'm also having a similar problem
p
Weird, I'm experiencing this now too
h
Upgrading pex did it for me
p
This did resolve it for me, though I don't understand why it worked.
Copy code
[python]
+pip_version = "latest"
 
+[pex-cli]
+version = "v2.13.0"
+known_versions = [
+  "v2.13.0|macos_arm64|dba08dde901cfbc43176a7d99414c7c58a3eeaa41743d2abbdf41a58d1d5ead9|4190750",
+  "v2.13.0|macos_x86_64|dba08dde901cfbc43176a7d99414c7c58a3eeaa41743d2abbdf41a58d1d5ead9|4190750",
+  "v2.13.0|linux_x86_64|dba08dde901cfbc43176a7d99414c7c58a3eeaa41743d2abbdf41a58d1d5ead9|4190750",
+  "v2.13.0|linux_arm64|dba08dde901cfbc43176a7d99414c7c58a3eeaa41743d2abbdf41a58d1d5ead9|4190750"
+]