Skip to content

Commit

Permalink
DeadlineDispatcherTest : Remove support for Python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmehl committed Jan 14, 2023
1 parent 852f2bb commit 4540a42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Added Alfred style progress (commonly used by Houdini renderers) updates in the Deadline plugin.
- Added support for Gaffer 0.61.1.2, 1.2.0.0a1 and 1.2.0.0a2.
- Added the ability to use `pathlib.Path` objects in auxiliary files. This can be done, for example, in a prespool signal handler that modifies the jobs auxiliary files via `setAuxFiles()`.
- DeadlineDispatcherTest : Removed support for Python 2.

# 0.56.0.1
## Bugs Squished
Expand Down
6 changes: 1 addition & 5 deletions python/GafferDeadlineTest/DeadlineDispatcherTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@

import os
import unittest
import sys
if sys.version_info >= (3, 3):
from unittest import mock
else:
import mock
from unittest import mock

import IECore

Expand Down

0 comments on commit 4540a42

Please sign in to comment.