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

SG-37774 Remove Python 2 #19

Open
wants to merge 11 commits into
base: master
Choose a base branch
from

Conversation

carlos-villavicencio-adsk
Copy link
Contributor

@carlos-villavicencio-adsk carlos-villavicencio-adsk commented Jan 7, 2025

What's new?

  • Updates badges
  • Updates super syntax
  • Updates unit tests dependencies
  • Changes open(path, "rU") to open(path, "r") for standardization
  • Enables unit tests

@carlos-villavicencio-adsk carlos-villavicencio-adsk requested a review from a team January 7, 2025 13:51
@@ -579,7 +579,7 @@ def read_cmx_edl(self, path, fps=24, visitor=None):
self._edits = []
# And read the file
self.__logger.info("Parsing EDL %s" % path)
with open(path, "rU") as handle:
with open(path, "r", encoding="utf-8") as handle:
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Otherwise it fails on CI Windows.

python/edl/errors.py Outdated Show resolved Hide resolved
python/edl/errors.py Outdated Show resolved Hide resolved
tests/test_read.py Show resolved Hide resolved
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