update DLLs to 2.5 releases
This commit is contained in:
parent
55bca5837b
commit
6d0f77936e
9 changed files with 6 additions and 4 deletions
|
@ -1 +1 @@
|
|||
__version__ = "2.5.dev4"
|
||||
__version__ = "2.5.0"
|
|
@ -8,7 +8,7 @@ import platform
|
|||
# Probably unnecessary, just covering all bases in case people add or remove dlls
|
||||
MAC_NAMES = ['libraylib.2.5.0.dylib', 'libraylib.2.dylib', 'libraylib.dylib']
|
||||
LINUX_NAMES = ['libraylib.so.2.5.0','libraylib.so.2', 'libraylib.so']
|
||||
WINDOWS_NAMES = ['libraylib.dll', 'raylib.dll']
|
||||
WINDOWS_NAMES = ['raylib.dll', 'libraylib.dll']
|
||||
|
||||
|
||||
if platform.system() == "Darwin":
|
||||
|
|
Binary file not shown.
Binary file not shown.
1
raylib/dynamic/libraylib.dylib
Symbolic link
1
raylib/dynamic/libraylib.dylib
Symbolic link
|
@ -0,0 +1 @@
|
|||
libraylib.2.5.0.dylib
|
1
raylib/dynamic/libraylib.so
Symbolic link
1
raylib/dynamic/libraylib.so
Symbolic link
|
@ -0,0 +1 @@
|
|||
libraylib.so.2.5.0
|
1
raylib/dynamic/libraylib.so.2
Symbolic link
1
raylib/dynamic/libraylib.so.2
Symbolic link
|
@ -0,0 +1 @@
|
|||
libraylib.so.2.5.0
|
BIN
raylib/dynamic/libraylib.so.2.5.0
Normal file
BIN
raylib/dynamic/libraylib.so.2.5.0
Normal file
Binary file not shown.
BIN
raylib/dynamic/raylib.dll
Normal file
BIN
raylib/dynamic/raylib.dll
Normal file
Binary file not shown.
4
setup.py
4
setup.py
|
@ -10,7 +10,7 @@ README = (HERE / "README.md").read_text()
|
|||
# This call to setup() does all the work
|
||||
setup(
|
||||
name="raylib",
|
||||
version="2.5.dev5",
|
||||
version="2.5.0",
|
||||
description="Python CFFI bindings for Raylib",
|
||||
long_description=README,
|
||||
long_description_content_type="text/markdown",
|
||||
|
@ -23,7 +23,7 @@ setup(
|
|||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
],
|
||||
packages=["raylib", "raylib.dynamic", "raylib.static"],
|
||||
packages=["raylib", "raylib.dynamic", "raylib.static", "raylib.richlib"],
|
||||
include_package_data=True,
|
||||
install_requires=["cffi","inflection"],
|
||||
#cffi_modules=["raylib/build_mac.py:ffibuilder"], # this would build libs whenever the module is installed, but we are distributing static libs instead
|
||||
|
|
Reference in a new issue