-
Notifications
You must be signed in to change notification settings - Fork 527
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
ext/_yaml.c is missing in 4.1 tarball #182
Comments
Will address soon. #179 (comment) |
This reverts commit 96defc5. With PyYAML 4.1 we don't have C extensions on Travis CI: yaml/pyyaml#179 yaml/pyyaml#182 Unfortunately, cython isn't in the APT whitelist either: travis-ci/apt-source-safelist#37
@ingydotnet the usual way to fix this is to ensure |
for instance, here's what shapely does |
@asottile I created #188, thanks |
@perlpunk I sent a PR to your branch: perlpunk#1 |
and add a warning if cython could not be loaded, but is not required Fixes #182
and add a warning if cython could not be loaded, but is not required Fixes #182
Installing
pyyaml 3.12
withoutcython
do build the_yaml
extension, but installing4.1
do not:The problem is that in https://pypi.org/simple/pyyaml/
PyYAML-3.12.tar.gz
containsext/_yaml.c
, butPyYAML-4.1.tar.gz
do not, socython
is required for4.1
to build the extension. (.pyx
->.c
)(question also asked in #179 but the issue was about another problem and is closed)
Could it be possible to make a new
4.1
tarball includingext/_yaml.c
?The text was updated successfully, but these errors were encountered: