Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ThanatosGit committed Jan 10, 2024
1 parent b8d5dcb commit ba71318
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion randovania_lupa/_lupa.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
except ImportError:
from distutils.core import setup, Extension

VERSION = '2.0'
VERSION = '2.0.1'

extra_setup_args = {}

Expand Down

0 comments on commit ba71318

Please sign in to comment.