Skip to content
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

Patch distutils build command and remove empty C extension trick #30

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Commits on Jun 22, 2021

  1. Patch distutils build command instead

    This removes the empty C extension trick.
    messense committed Jun 22, 2021
    Configuration menu
    Copy the full SHA
    f7f8075 View commit details
    Browse the repository at this point in the history
  2. Use cbindgen 0.19 in example

    messense committed Jun 22, 2021
    Configuration menu
    Copy the full SHA
    63a9627 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cedd71b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    980e70c View commit details
    Browse the repository at this point in the history
  5. Fix module import error on Windows PyPy

    ```
    Traceback (most recent call last):
    
      File "<string>", line 7, in <module>
    
      File "<stdin>", line 2, in <module>
    
      File "d:\a\milksnake\milksnake\tests\res\nested\example\nested\__init__.py", line 1, in <module>
    
        from . import _native
    
      File "d:\a\milksnake\milksnake\tests\res\nested\example\nested\_native.py", line 7, in <module>
    
        lib = ffi.dlopen(os.path.join(os.path.dirname(__file__), '_native__libNone'), 0)
    
    OSError: Cannot load library 'd:\\a\\milksnake\\milksnake\\tests\\res\\nested\\example\\nested\\_native__libNone': The specified module could not be found
    ```
    messense committed Jun 22, 2021
    Configuration menu
    Copy the full SHA
    bb1a9e3 View commit details
    Browse the repository at this point in the history