Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[master] Py3.11 Support [Take 2] #64458

Merged
merged 13 commits into from Jun 19, 2023

Conversation

s0undt3ch
Copy link
Member

@s0undt3ch s0undt3ch commented Jun 12, 2023

What does this PR do?

See title

Fixes #64457

@salt-project-bot-prod-environment salt-project-bot-prod-environment bot changed the title [WIP] Py3.11 Support [Take 2] [master][WIP] Py3.11 Support [Take 2] Jun 12, 2023
@s0undt3ch s0undt3ch linked an issue Jun 12, 2023 that may be closed by this pull request
1 task
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 15:35 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 15:35 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 15:35 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 15:53 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 16:02 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 16:37 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 16:37 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 16:37 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 16:37 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 16:37 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 17:02 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 17:02 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 17:02 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 17:02 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 17:03 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 17:56 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 17:56 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 17:56 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 18:14 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 12, 2023 18:17 — with GitHub Actions Inactive
…ated since Py 3.0

Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
…in Py 3.13

Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
```
❯ artifacts/salt/bin/python3
Python 3.10.11 (main, May  5 2023, 02:31:54) [GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import base64
>>> base64.b64decode("AAAAB3NzaC1kcQ9J5bYTEyZ==", validate=True)
b'\x00\x00\x00\x07ssh-dq\x0fI\xe5\xb6\x13\x13&'
```
```
$ artifacts/salt/bin/python3
Python 3.11.3 (main, May  5 2023, 02:31:40) [GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import base64
>>> base64.b64decode("AAAAB3NzaC1kcQ9J5bYTEyZ==", validate=True)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/tmp/testing/artifacts/salt/lib/python3.11/base64.py", line 88, in b64decode
    return binascii.a2b_base64(s, strict_mode=validate)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
binascii.Error: Excess data after padding
```

Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 13:07 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 13:07 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 13:07 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 13:14 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 13:25 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 13:27 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 14:55 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 14:55 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 14:55 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 14:55 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 14:55 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch temporarily deployed to ci June 17, 2023 14:55 — with GitHub Actions Inactive
@s0undt3ch s0undt3ch merged commit ae14412 into saltstack:master Jun 19, 2023
309 checks passed
@s0undt3ch s0undt3ch deleted the hotfix/py3.11-support-v2 branch June 19, 2023 22:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEATURE REQUEST] Add Python 3.11 to onedir packages
3 participants