在 Github 操作中的 Python 包中导入 Fortran 模块时出现问题
Problem in importing Fortran module in a Python Package in Github actions
为了加速 Python 包中的一部分代码,我编写了一个 Fortran 子例程。它在我的本地系统上工作正常。这是包结构。
p_name/
setup.py
p_name/
__init__.py
fortran_sc_folder/
rsp.f95
这是setup.py的(部分):
from numpy.distutils.core import setup, Extension
ext1 = Extension(name='p_name.fortran_sc_folder.rsp', sources=['p_name/fortran_sc_folder/rsp.f95'])
setup(
...
ext_modules = [ext1]
...
)
在程序内部,我使用以下访问模块:
import .fortran_sc_folder.rsp
它可以安装并运行,不会引发任何错误。但是,当我推送更改时,它无法通过 GitHub 操作。错误是:
E ModuleNotFoundError: No module named 'p_name.fortran_cs_folder.rsp'
你知道如何解决这个问题吗?有没有更好的方法在 python 包中使用 Fortran 代码?
更新:
这是 GitHub 操作流程:
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup conda
uses: s-weigand/setup-conda@v1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
conda install -c conda-forge cartopy
# - name: Lint with flake8
# run: |
# # stop the build if there are Python syntax errors or undefined names
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest
在@RossMacArthur 的comment/question 之后,我意识到 GitHub 操作上的包是代码库,而不是编译版本。由于在安装过程中使用 Numpy 库中的 setup
编译 Fortran 代码 (from numpy.distutils.core import setup
),因此我们需要在 GitHub 工作流程中安装包。因此,我在 install dependencies
部分的末尾添加了以下行。
pip install -e ../p_name
问题已解决。
为了加速 Python 包中的一部分代码,我编写了一个 Fortran 子例程。它在我的本地系统上工作正常。这是包结构。
p_name/
setup.py
p_name/
__init__.py
fortran_sc_folder/
rsp.f95
这是setup.py的(部分):
from numpy.distutils.core import setup, Extension
ext1 = Extension(name='p_name.fortran_sc_folder.rsp', sources=['p_name/fortran_sc_folder/rsp.f95'])
setup(
...
ext_modules = [ext1]
...
)
在程序内部,我使用以下访问模块:
import .fortran_sc_folder.rsp
它可以安装并运行,不会引发任何错误。但是,当我推送更改时,它无法通过 GitHub 操作。错误是:
E ModuleNotFoundError: No module named 'p_name.fortran_cs_folder.rsp'
你知道如何解决这个问题吗?有没有更好的方法在 python 包中使用 Fortran 代码?
更新: 这是 GitHub 操作流程:
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup conda
uses: s-weigand/setup-conda@v1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
conda install -c conda-forge cartopy
# - name: Lint with flake8
# run: |
# # stop the build if there are Python syntax errors or undefined names
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest
在@RossMacArthur 的comment/question 之后,我意识到 GitHub 操作上的包是代码库,而不是编译版本。由于在安装过程中使用 Numpy 库中的 setup
编译 Fortran 代码 (from numpy.distutils.core import setup
),因此我们需要在 GitHub 工作流程中安装包。因此,我在 install dependencies
部分的末尾添加了以下行。
pip install -e ../p_name
问题已解决。