Skip to content

Commit

Permalink
CI : Update to GafferHQ/dependencies 7.0.0a3
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaddon committed Jun 13, 2023
1 parent 9aeafa1 commit f0f4324
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main/installDependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

# Determine default archive URL.

defaultURL = "https://github.com/GafferHQ/dependencies/releases/download/7.0.0a2/gafferDependencies-7.0.0a2-{platform}.{extension}".format(
defaultURL = "https://github.com/GafferHQ/dependencies/releases/download/7.0.0a3/gafferDependencies-7.0.0a3-{platform}.{extension}".format(
platform = { "darwin" : "osx", "win32" : "windows" }.get( sys.platform, "linux" ),
extension = "tar.gz" if sys.platform != "win32" else "zip"
)
Expand Down
4 changes: 4 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ Breaking Changes
- PlugValueWidget :
- Removed support for deprecated `layout:widgetType` metadata. Use `plugValueWidget:type` metadata instead.
- Removed `useTypeOnly` argument from `create()` function. Pass `typeMetadata = None` instead.
- MeshTangents : Changed the edge used by `Mode::FirstEdge`.

Build
-----
Expand All @@ -126,6 +127,7 @@ Build
- Stopped linking unnecessarily to `iostreams`, `date_time`, `wave` and `system` libraries.
- Cortex : Updated to version 10.5.0.0.
- Imath : Added version 3.1.7.
- MaterialX : Added version 1.38.4.
- Minizip : Added version 3.0.9.
- OpenEXR :
- Updated to version 3.1.7.
Expand All @@ -136,6 +138,8 @@ Build
- PyBind11 : Updated to version 2.10.4.
- PySide : Updated to version 5.15.8.
- Qt : Updated to version 5.15.8.
- USD : Updated to version 23.05.
- Xerces : Removed.
- ZLib : Added version 1.2.13.

1.2.x.x (relative to 1.2.7.0)
Expand Down
4 changes: 2 additions & 2 deletions python/GafferSceneTest/MeshTangentsTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ def testModeFirstEdge( self ) :
self.assertEqual( len( tangent.data ), 3 )
self.assertEqual( len( biTangent.data ), 3 )

for v, v1 in zip( tangent.data, [imath.V3f( 1, 0, 0 ), imath.V3f( -1, 0, 0 ), imath.V3f( 0, -1, 0 ) ] ):
for v, v1 in zip( tangent.data, [ imath.V3f( 1, 0, 0 ), imath.V3f( -1, 0, 0 ), imath.V3f( 1, -1, 0 ).normalized() ] ) :
self.assertTrue( v.equalWithAbsError( v1, 0.000001 ) )

for v, v1 in zip( biTangent.data, [imath.V3f( 0, -1, 0 ), imath.V3f( 0, 1, 0 ), imath.V3f( -1, 0, 0 ) ] ):
for v, v1 in zip( biTangent.data, [ imath.V3f( 0, -1, 0 ), imath.V3f( 0, 1, 0 ), imath.V3f( -1, -1, 0 ).normalized() ] ) :
self.assertTrue( v.equalWithAbsError( v1, 0.000001 ) )

def testModeTwoEdges( self ) :
Expand Down

0 comments on commit f0f4324

Please sign in to comment.