Skip to content

Commit eda5e14

Browse files
try build on python 3.10
1 parent b0a8448 commit eda5e14

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: macos-10.15
1818
strategy:
1919
matrix:
20-
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
20+
python-version: [ 3.6, 3.7, 3.8, 3.9, 3.10 ]
2121
env:
2222
MACOSX_DEPLOYMENT_TARGET: 10.14
2323
steps:
@@ -61,7 +61,7 @@ jobs:
6161
# You can use PyPy versions in python-version.
6262
# For example, pypy2 and pypy3
6363
matrix:
64-
python-version: [ 3.6, 3.7, 3.8, 3.9, pypy-3.6, pypy-3.7 ]
64+
python-version: [ 3.6, 3.7, 3.8, 3.9, 3.10, pypy-3.6, pypy-3.7 ]
6565
steps:
6666
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
6767
- uses: actions/checkout@v2
@@ -109,7 +109,7 @@ jobs:
109109
# You can use PyPy versions in python-version.
110110
# For example, pypy2 and pypy3
111111
matrix:
112-
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
112+
python-version: [ 3.6, 3.7, 3.8, 3.9, 3.10 ]
113113
steps:
114114
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
115115
- uses: actions/checkout@v2

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def has_ext_modules(foo):
1616
# This call to setup() does all the work
1717
setup(
1818
name="raylib",
19-
version="3.7.0.post2",
19+
version="3.7.0.post3",
2020
description="Python CFFI bindings for Raylib",
2121
long_description=README,
2222
long_description_content_type="text/markdown",
@@ -27,6 +27,7 @@ def has_ext_modules(foo):
2727
classifiers=[
2828
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
2929
"Programming Language :: Python :: 3",
30+
"Programming Language :: Python :: 3.10",
3031
"Programming Language :: Python :: 3.9",
3132
"Programming Language :: Python :: 3.8",
3233
"Programming Language :: Python :: 3.6",

0 commit comments

Comments
 (0)