diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 3a5cb1ce..7d02191f 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -37,7 +37,7 @@ jobs: files: dist/*.tar.gz - name: Upload sdist - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: sdist path: dist/*.tar.gz diff --git a/randovania_lupa/_lupa.pyx b/randovania_lupa/_lupa.pyx index 47527d11..a4b9ddf4 100644 --- a/randovania_lupa/_lupa.pyx +++ b/randovania_lupa/_lupa.pyx @@ -614,7 +614,7 @@ cdef class LuaRuntime: lua.lua_settop(L, old_top) unlock_runtime(self) - def compile_to_byes(self, lua_code: str) -> bytes: + def compile_to_bytes(self, lua_code: str) -> bytes: """Compiles a Lua program and returns the bytes. lua_code is a string with the lua code diff --git a/setup.py b/setup.py index 14310619..0fd96811 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ except ImportError: from distutils.core import setup, Extension -VERSION = '2.0' +VERSION = '2.0.1' extra_setup_args = {}