Skip to content

Commit 4cec97f

Browse files
authored
Support gcc-11 (#348)
* Update README.md * Update main.yml * Update Readme.rst * Update setup.py
1 parent b344a64 commit 4cec97f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- master
1212

1313
env:
14-
GCC_VER_MACOS: '10'
14+
GCC_VER_MACOS: '11'
1515
GCC_VER_LINUX: '5'
1616
jobs:
1717
test:

RGF/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Please see the file [`CHANGES.md`](./CHANGES.md) for the changelog of RGF.
1111
# 0.1 Acknowledgements
1212

1313
We thank **Dave Slate** for suggesting a solution to the issue of file size
14-
restriction above.
14+
restriction.
1515

1616
************************************************************************
1717

@@ -80,8 +80,6 @@ Otherwise, your executable can be anywhere you like.
8080
The easiest way. Just download the precompiled file `rgf.exe`
8181
from the latest [GitHub release](https://github.com/RGF-team/rgf/releases).
8282

83-
For 32-bit Windows download `rgf32.exe` file and rename it to `rgf.exe`.
84-
8583
### 3.1.2. Visual Studio (Using the Provided Solution File)
8684

8785
1. Open directory `Windows/rgf`.

python-package/Readme.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ or from `GitHub <https://github.com/RGF-team/rgf/python-package>`__:
7575
cd rgf/python-package
7676
python setup.py install
7777

78+
MacOS users, **rgf\_python** after the ``3.10.0`` version is built with **g++-11** and cannot be launched on systems with **g++-10** and earlier. You should update your **g++** compiler if you don't want to build from sources or install **rgf\_python** ``3.10.0`` from PyPI which is the last version built with **g++-10**.
79+
7880
MacOS users, **rgf\_python** after the ``3.8.0`` version is built with **g++-10** and cannot be launched on systems with **g++-9** and earlier. You should update your **g++** compiler if you don't want to build from sources or install **rgf\_python** ``3.8.0`` from PyPI which is the last version built with **g++-9**.
7981

8082
MacOS users, **rgf\_python** after the ``3.5.0`` version is built with **g++-9** and cannot be launched on systems with **g++-8** and earlier. You should update your **g++** compiler if you don't want to build from sources or install **rgf\_python** ``3.5.0`` from PyPI which is the last version built with **g++-8**.

python-package/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def is_valid_gpp():
249249
if tmp_result or system() in ('Windows', 'Microsoft'):
250250
return tmp_result
251251

252-
for version in range(5, 11):
252+
for version in range(5, 12):
253253
try:
254254
subprocess.check_output(('g++-' + str(version), '--version'))
255255
return True

0 commit comments

Comments
 (0)