X Tutup
Skip to content

Include python 3.10 and 3.11 as supported versions#96

Closed
zetahernandez wants to merge 1 commit intoaws:mainfrom
zetahernandez:main
Closed

Include python 3.10 and 3.11 as supported versions#96
zetahernandez wants to merge 1 commit intoaws:mainfrom
zetahernandez:main

Conversation

@zetahernandez
Copy link

*Issue #89
*Issue #85

Description of changes:
Include python 3.10 and 3.11 as supported versions, adding it to the tests runtimes.
SyntaxError error message has changed since python 3.10 that requires a change on the assertion of one the tests.

➜ python3.9 -c 'eval("-")'

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "<string>", line 1
    -
    ^
SyntaxError: unexpected EOF while parsing
➜ python3.11 -c 'eval("-")'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "<string>", line 1
    -
SyntaxError: invalid syntax

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

@JonZeolla
Copy link

@zetahernandez it looks like this could benefit from rebasing on main after eabc088 and 13e2d05 from @briensea

Copy link

@JonZeolla JonZeolla left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tested this via make pr on python 3.8.17, 3.9.17, 3.10.6, and 3.11.4 (the upstream supported python versions)

LGTM

@briensea
Copy link
Contributor

Released in 2.0.5 and available on PyPi.

@briensea briensea closed this Aug 16, 2023
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.

3 participants

X Tutup