Skip to content

Commit

Permalink
Bumping up version number. Update dependencies. Adds note on readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamolina committed Aug 3, 2023
1 parent ab8e3af commit eb77b34
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 17 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ This is a fork of [Porting advisor](https://github.com/arm-hpc/porting-advisor),

It is a command line tool that analyzes source code for known code patterns and dependency libraries. It then generates a report with any incompatibilities with our Graviton processors. This tool provides suggestions of minimal required and/or recommended versions to run on Graviton instances for both language runtime and dependency libraries. It can run on non-ARM based machines (no Graviton processor needed). This tool does not work on binaries, just source code. It does not make any code modifications, it doesn’t make API level recommendations, nor does it send data back to AWS.

**PLEASE NOTE: Even though we do our best to find known incompatibilities, we still recommend to perform the appropriate tests to your application on a Graviton instance before going to Production.**

This tool scans all files in a source tree, regardless of whether they are included by the build system or not. As such it may erroneously report issues in files that appear in the source tree but are excluded by the build system. Currently, the tool supports the following languages/dependencies:

* Python 3+
Expand Down
22 changes: 11 additions & 11 deletions requirements-build.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
altgraph==0.17.2
certifi==2022.12.7
charset-normalizer==2.1.1
coverage==7.0.1
altgraph==0.17.3
certifi==2023.7.22
charset-normalizer==3.2.0
coverage==7.2.7
idna==3.4
Jinja2==3.1.2
MarkupSafe==2.1.1
packaging==21.3
MarkupSafe==2.1.3
packaging==23.1
progressbar33==2.4
pyinstaller==5.5
pyinstaller-hooks-contrib==2022.4
pyparsing==3.0.9
pyinstaller==5.13.0
pyinstaller-hooks-contrib==2023.6
pyparsing==3.1.1
requests==2.31.0
urllib3==1.26.13
XlsxWriter==3.0.3
urllib3==2.0.4
XlsxWriter==3.1.2
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
altgraph==0.17.2
altgraph==0.17.3
Jinja2==3.1.2
MarkupSafe==2.1.1
packaging==21.3
MarkupSafe==2.1.3
packaging==23.1
progressbar33==2.4
pyparsing==3.0.9
XlsxWriter==3.0.3
pyparsing==3.1.1
XlsxWriter==3.1.2
2 changes: 1 addition & 1 deletion src/advisor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""

__project__ = 'porting-advisor'
__version__ = '1.0.2'
__version__ = '1.1.0'
__summary__ = 'Produces an aarch64 porting readiness report.'
__webpage__ = 'http://www.gitlab.com/arm-hpc/porting-advisor'

Expand Down

0 comments on commit eb77b34

Please sign in to comment.