From 89335a416d8f70de32f64ab932f82f766b3e0d45 Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 28 Jun 2021 14:02:59 +0100 Subject: [PATCH] version bump --- .github/workflows/build.yml | 4 ++-- raylib/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b503ed0..2806952 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: # You can use PyPy versions in python-version. # For example, pypy2 and pypy3 matrix: - python-version: [ 3.6, 3.7, 3.8, 3.9, pypy3 ] + python-version: [ 3.6, 3.7, 3.8, 3.9, pypy3.6, pypy3.7 ] steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 @@ -67,7 +67,7 @@ jobs: # You can use PyPy versions in python-version. # For example, pypy2 and pypy3 matrix: - python-version: [ 3.6, 3.7, 3.8, 3.9, pypy3 ] + python-version: [ 3.6, 3.7, 3.8, 3.9 ] steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 diff --git a/raylib/__init__.py b/raylib/__init__.py index dcbfb52..217e558 100644 --- a/raylib/__init__.py +++ b/raylib/__init__.py @@ -1 +1 @@ -__version__ = "3.5.0" +__version__ = "3.7.0.post2" diff --git a/setup.py b/setup.py index 5be97c4..aa4004b 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ class BinaryDistribution(Distribution): # This call to setup() does all the work setup( name="raylib", - version="3.7.0.post1", + version="3.7.0.post2", description="Python CFFI bindings for Raylib", long_description=README, long_description_content_type="text/markdown",