tar.gzのpipインストールで「Cython」という名前のモジュールはありません


10

Poetryを使用して、サンプルパッケージ(https://github.com/iamishalkin/cyrtd)のtar.gzおよびwhlファイルをビルドし、pipenv環境内にパッケージをインストールしようとします。tar.gzのインストールは失敗し、これはログの一部です。

$ poetry build
...
$ pip install dist/cyrtd-0.1.0.tar.gz
Processing c:\work2\cyrtd\dist\cyrtd-0.1.0.tar.gz
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
Requirement already satisfied: cython<0.30.0,>=0.29.13 in c:\users\ivan.mishalkin\.virtualenvs\cyrtd-tpdvsw8x\lib\site-packages (from cyrtd==0.1.0) (0.29.15)
Building wheels for collected packages: cyrtd
  Building wheel for cyrtd (PEP 517) ... error
  ERROR: Command errored out with exit status 1:
...
from Cython.Build import cythonize
  ModuleNotFoundError: No module named 'Cython'  
  ----------------------------------------
  ERROR: Failed building wheel for dxpyfeed
Failed to build dxpyfeed
ERROR: Could not build wheels for dxpyfeed which use PEP 517 and cannot be installed directly

Cythonがインストールされ、仮想インタープリターから呼び出すことができます。ログにも書いてありますが、cythonの要件は満たされています。奇妙なこと-数か月前はすべてうまくいきました。私はconda venvも試しました、アップグレードされたcythonと詩、何の助けにもなりませんでした。Cythonでsetup_requiresからの関連性の低い回避策も試しましたか?-まだ運がない

UPD:ここでいくつかの汚い回避策を見つけました:https : //luminousmen.com/post/resolve-cython-and-numpy-dependencies

アイデアは追加することです

from setuptools import dist
dist.Distribution().fetch_build_eggs(['cython'])

Cython.Buildインポート前

この後、これらのログを取得します。

$ pip install dist/cyrtd-0.1.0.tar.gz
Processing c:\work2\cyrtd\dist\cyrtd-0.1.0.tar.gz
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
Requirement already satisfied: cython<0.30.0,>=0.29.13 in c:\users\ivan.mishalkin\.virtualenvs\cyrtd-tpdvsw8x\lib\site-packages (from cyrtd==0.1.0) (0.29.15)
Building wheels for collected packages: cyrtd
  Building wheel for cyrtd (PEP 517) ... done
  Created wheel for cyrtd: filename=cyrtd-0.1.0-cp37-cp37m-win_amd64.whl size=33062 sha256=370a90657759d3183f3c11ebbdf1d23c3ca857d41dd45a86386ba33a6baf9a07
  Stored in directory: c:\users\ivan.mishalkin\appdata\local\pip\cache\wheels\45\d1\6b\52daecf1cc5234ca4d9e9e49b2f195e7adb83941424116432e
Successfully built cyrtd
Installing collected packages: cyrtd
  Attempting uninstall: cyrtd
    Found existing installation: cyrtd 0.1.0
    Uninstalling cyrtd-0.1.0:
      Successfully uninstalled cyrtd-0.1.0
Successfully installed cyrtd-0.1.0

まだより良い解決策を探しています

UPD2: メインファイルコンテンツ:build.py:

from setuptools import Extension
from Cython.Build import cythonize

cyfuncs_ext = Extension(name='cyrtd.cymod.cyfuncs',
                        sources=['cyrtd/cymod/cyfuncs.pyx']
                        )

EXTENSIONS = [
    cyfuncs_ext
]

def build(setup_kwargs):
    setup_kwargs.update({
        'ext_modules': cythonize(EXTENSIONS, language_level=3),
        'zip_safe': False,
        'setup_requires':['setuptools>=18.0', 'cython']
    })

1
build.py値としてスクリプトセットは[tool.poetry].build、またはどのようにあなたがそれをバインドするのですか?
Arne

1
@Arneはい、もちろんpyproject.tomlファイルにバインドされています。質問のリポジトリにはすべてのコードが含まれています
Ivan Mishalkin

ああ、あなたがあなたのリポジトリをリンクしているのを見なかった。これはあなたにとって適切な解決策ですか、それとももっと良いものを探していますか?それで十分であれば、自己完結型の回答として投稿することを検討してください。
アルネ

@Arneは少し前にそのような回避策なしですべてがうまくいったので、もっと良い解決策があると確信しています。問題は、私が知らないこと、何が変わったのか、どこでバグを検索するのか
Ivan Mishalkin

回答:


0

で、ビルド・システム部でcythonを追加するpyproject.toml私を助けました

pyproject.toml

...
[build-system]
requires = ["poetry>=0.12", "cython"]
...
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.