summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2021-08-19 11:16:52 -0700
committerGitHub <noreply@github.com>2021-08-19 11:16:52 -0700
commit5a40364f951f85ed73d6aaf881f8ee9521a56f07 (patch)
tree62bc1208d7c64c846aa2178d92a4d3a46063abdc
parent16f362cacd53abee3e60b14d18536cf32e4219f0 (diff)
parent850fb8d1e7733879018ad8618d032e535fa47fe4 (diff)
downloadsimplejson-3.17.4.tar.gz
Merge pull request #287 from simplejson/upgrade-cibuildwheelv3.17.4
Upgrade cibuildwheel to v2.1.1
-rw-r--r--.github/workflows/build-and-deploy.yml2
-rw-r--r--CHANGES.txt5
-rw-r--r--conf.py2
-rw-r--r--setup.py2
-rw-r--r--simplejson/__init__.py2
5 files changed, 9 insertions, 4 deletions
diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml
index b3cf183..4f4d488 100644
--- a/.github/workflows/build-and-deploy.yml
+++ b/.github/workflows/build-and-deploy.yml
@@ -32,7 +32,7 @@ jobs:
platforms: all
- name: Build wheels
- uses: pypa/cibuildwheel@v2.0.0a4
+ uses: pypa/cibuildwheel@v2.1.1
env:
CIBW_TEST_COMMAND: >-
python -m simplejson.tests._cibw_runner "{project}"
diff --git a/CHANGES.txt b/CHANGES.txt
index 8f443c3..a397ece 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,8 @@
+Version 3.17.4 released 2021-08-19
+
+* Upgrade cibuildwheel
+ https://github.com/simplejson/simplejson/pull/287
+
Version 3.17.3 released 2021-07-09
* Replaced Travis-CI and AppVeyor with Github Actions,
diff --git a/conf.py b/conf.py
index 6c9cb56..9809d1a 100644
--- a/conf.py
+++ b/conf.py
@@ -44,7 +44,7 @@ copyright = '2021, Bob Ippolito'
# The short X.Y version.
version = '3.17'
# The full version, including alpha/beta/rc tags.
-release = '3.17.3'
+release = '3.17.4'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
diff --git a/setup.py b/setup.py
index bfe8f25..92a2108 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ from distutils.errors import CCompilerError, DistutilsExecError, \
DistutilsPlatformError
IS_PYPY = hasattr(sys, 'pypy_translation_info')
-VERSION = '3.17.3'
+VERSION = '3.17.4'
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
with open('README.rst', 'r') as f:
diff --git a/simplejson/__init__.py b/simplejson/__init__.py
index 9e918ff..aecbbaa 100644
--- a/simplejson/__init__.py
+++ b/simplejson/__init__.py
@@ -118,7 +118,7 @@ Serializing multiple objects to JSON lines (newline-delimited JSON)::
"""
from __future__ import absolute_import
-__version__ = '3.17.3'
+__version__ = '3.17.4'
__all__ = [
'dump', 'dumps', 'load', 'loads',
'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',