Skip to content

Commit 37c6977

Browse files
authored
Merge pull request #7 from josephsnyder/update-tocastxml-0.3.6
Update CastXML to version 0.3.6
2 parents e03b460 + 891fac5 commit 37c6977

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

CastXMLUrls.cmake

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
set(linux32_binary_url "NA") # Linux 32-bit binaries not available
66
set(linux32_binary_sha512 "NA")
77

8-
set(linux64_binary_url "https://data.kitware.com/api/v1/file/5ee7eb659014a6d84ec1f25e/download")
9-
set(linux64_binary_sha512 "a3c929ebd652fd159709826e154d566235fb12903dac04070854e83abf0e091ae369421b83699d4d78d4334ce1c5b7c9fda5f90e0c8e31170b7e902273eb4a09")
8+
set(linux64_binary_url "https://data.kitware.com/api/v1/file/5f6c9d2650a41e3d19a8e7ec/download")
9+
set(linux64_binary_sha512 "85514042f024c705ea9647b4830ac5e58c83167792c2cfe9edab6ea4af52b0f8cb967ff53c5bfee6f8d6096f4de6a83c95d67c538f6fc0c537bc596948817585")
1010

11-
set(macosx_binary_url "https://data.kitware.com/api/v1/file/5ee7eb5c9014a6d84ec1f240/download")
12-
set(macosx_binary_sha512 "0ba8deff17b3a8f5a2cd22939ff83a864629201d8b881e44d7ed01d0fd2aa578338e3319e402c226b3648a6027a4538e8c4cd066d6fe2c49eb1a4471e803b827")
11+
set(macosx_binary_url "https://data.kitware.com/api/v1/file/5f6c9e3d50a41e3d19a8e85c/download")
12+
set(macosx_binary_sha512 "cf7abb0eeb76ede7a36b6f1ac2545f2dcd00303c817810d118d12aaa1fe058d3348b6555e3ebe7bd47aba713ee02d489f1a33ba58d94d5b6e722fd1cae22647e")
1313

14-
set(win64_binary_url "https://data.kitware.com/api/v1/file/5ee7eb539014a6d84ec1f22a/download")
15-
set(win64_binary_sha512 "fa7a38dbdb71e0484cfeb255aef6d085abf23496a85051e3dccac593d9eec042fad5be72110d7f3528b424d90fbf5b5053c31f054470d691a7109c1f13776229")
14+
set(win64_binary_url "https://data.kitware.com/api/v1/file/5f6c9cd150a41e3d19a8e7b9/download")
15+
set(win64_binary_sha512 "ed396ebd56301a4dd4c414a02f8c41293d1ed60df0802ccf4eb1f6db63bdf7d2ddea0eb66cc5ce1e1fd244e29d446072eae9fbe9f13159fb0213772a796a10eb")
1616

1717
# See https://github.com/CastXML/CastXML-python-distributions/issues/5
1818
set(win32_binary_url "${win64_binary_url}")
19-
set(win32_binary_sha512 "${win64_binary_sha512}")
19+
set(win32_binary_sha512 "${win64_binary_sha512}")

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Introduction
44
============
55

6-
The latest CastXML python wheels provide CastXML 0.3.4 executable.
6+
The latest CastXML python wheels provide CastXML 0.3.6 executable.
77

88
CastXML is a C-family abstract syntax tree XML output tool.
99

docs/update_castxml_version.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ Available CastXML archives can be found `here <https://data.kitware.com/#folder/
1616
2. Execute `scripts/update_castxml_version.py` command line tool with the desired
1717
``X.Y.Z`` CastXML version available for download. For example::
1818

19-
$ release=0.3.4
19+
$ release=0.3.6
2020
$ python scripts/update_castxml_version.py ${release}
2121

2222
Collecting URLs and SHAs from 'https://data.kitware.com/#folder/57b5de948d777f10f2696370'
2323
Collecting URLs and SHAs from 'https://data.kitware.com/#folder/57b5de948d777f10f2696370' - done
24-
Updating 'CastXMLUrls.cmake' with CastXML version 0.3.4
25-
Updating 'CastXMLUrls.cmake' with CastXML version 0.3.4 - done
24+
Updating 'CastXMLUrls.cmake' with CastXML version 0.3.6
25+
Updating 'CastXMLUrls.cmake' with CastXML version 0.3.6 - done
2626
Updating README.md
2727
Updating README.md - done
2828
Updating docs/update_castxml_version.rst
@@ -33,7 +33,7 @@ Available CastXML archives can be found `here <https://data.kitware.com/#folder/
3333
3. Create a topic named `update-to-castxml-X.Y.Z` and commit the changes.
3434
For example::
3535

36-
release=0.3.4
36+
release=0.3.6
3737
git checkout -b update-to-castxml-${release}
3838
git add CastXMLUrls.cmake README.md docs/update_castxml_version.rst tests/test_distribution.py
3939
git commit -m "Update to CastXML ${release}"

tests/test_distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
def _check_castxml_install(virtualenv, tmpdir):
11-
expected_version = "0.3.4"
11+
expected_version = "0.3.6"
1212

1313
for executable_name in ["castxml"]:
1414
output = virtualenv.run(

0 commit comments

Comments
 (0)