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

docsrc: Update required python version in docs #306

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docsrc/xed-build.txt
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ https://intelxed.github.io (or inside Intel http://mjc.intel.com/mjcharne/mbuild
The XED build using mbuild is dependence driven It uses file and
command signatures to detect the need to rebuild files.

The mbuild script requires python version 2.7, python 3.4 or later.
The mbuild script requires python version 3.6 or later.


Assuming you checked out the tree as described above, you can build
Expand Down
6 changes: 3 additions & 3 deletions examples/README.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


To build the examples, a relatively recent version of python 2.7 is required.
To build the examples, a relatively recent version of python 3.6 is required.

================================
STATIC LIBRARY XED BUILD:
Expand All @@ -12,7 +12,7 @@ STATIC LIBRARY XED BUILD:

Windows:

% C:/python27/python mfile.py
% C:/python36/python mfile.py

================================
DYNAMIC LIBRARY XED BUILD:
Expand All @@ -27,6 +27,6 @@ If you have a a shared-object (or DLL build on windows) you must also include

Windows:

% C:/python27/python mfile.py --shared
% C:/python36/python mfile.py --shared

Add "--help" (no quotes) for more build options.