-
-
Notifications
You must be signed in to change notification settings - Fork 35
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
Can't install 0.0.8.1-x64-mingw32 in ruby 3.1 #66
Comments
Pre-compiled unf_ext gem in rubygems.org has broken ruby version constraints which prevent it from installing in ruby 3.1.1 on 64 bit Windows so we need to install it from source until the issue is resolved. reference: knu/ruby-unf_ext#66 Signed-off-by: Jeremiah Snapp <[email protected]>
I did some more investigating and I noticed that the
You can see that the
Somehow the build process for |
Thanks for reporting this. I might have failed to build and package binary gems properly with the latest version of rake-compiler-dock. I'll roll out 0.0.8.2 soon. |
This is probably related to the fact that RubyInstaller changed the x64 platform name from |
I've released 0.0.8.2.beta for testing. The latest version of rake-compiler-dock no longer seems to build an x64-mingw32 binary for Ruby 3.1 (code), so I followed that and pushed three binary gems. Feedback is welcome. |
@knu this seems to work for us. Can you please make a stable release? Thanks! |
Hi @knu, do you have any concerns with making 0.0.8.2 a stable release? |
@knu Can you make it a stable version? |
Pre-compiled unf_ext gem in rubygems.org has broken ruby version constraints which prevent it from installing in ruby 3.1.1 on 64 bit Windows so we need to install it from source until the issue is resolved. reference: knu/ruby-unf_ext#66 Signed-off-by: Jeremiah Snapp <[email protected]>
I'm trying to install 0.0.8.1-x64-mingw32 in a x64-mingw ruby 3.1.1 system but I get the following error.
I can successfully install 0.0.8.1-x86-mingw32 in a x86-mingw ruby 3.1.1 system.
I noticed
0.0.8.1-x64-mingw32
has required ruby version:>= 2.4, < 3.1.DEV
. Shouldn't it be>= 2.4, < 3.2.DEV
, the same as0.0.8.1-x86-mingw32
?The text was updated successfully, but these errors were encountered: