Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare for 1.0.6rc1 #557

Merged
merged 4 commits into from Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions ChangeLog.rst
@@ -1,3 +1,12 @@
1.0.6rc1
========

Release Date: 2023-09-13

* Add Python 3.12 wheels (#517)
* Remove Python 2.7, 3.6, and 3.7 support
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So, py27 is now officially unsupported?

I noticed a while ago that some docs still talk about py2.
Maybe there is also some code still relating to py2?
Shall I make a PR to remove that?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. I can not maintain Python 2.7 support.
Running/debugging on Python 2.7 is difficult today. So I will reject any Python 2 issues.
For example, actions/setup-python#672

Code cleanup for removing Python 2 support will be checked into msgpack 1.1.
For msgpack 1.0.6, I want to release RC as fast as possible.

I will update README/doc between 1.0.6rc and 1.0.6. PRs are welcome.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, a 1.0.6 soon would be very welcome!



1.0.5
=====

Expand Down
4 changes: 2 additions & 2 deletions msgpack/__init__.py
Expand Up @@ -4,8 +4,8 @@
import os


version = (1, 0, 5)
__version__ = "1.0.6dev1"
version = (1, 0, 6, "rc", 1)
__version__ = "1.0.6rc1"


if os.environ.get("MSGPACK_PUREPYTHON"):
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Expand Up @@ -14,12 +14,12 @@ license = {text="Apache 2.0"}
authors = [{name="Inada Naoki", email="songofacandy@gmail.com"}]
description = "MessagePack serializer"
readme = "README.md"
#keywords = ["python", "msgpack", "messagepack", "serializer", "serialization", "binary"]
#requires-python = ">=3.8"
keywords = ["msgpack", "messagepack", "serializer", "serialization", "binary"]
requires-python = ">=3.8"
classifiers = [
# "Development Status :: 5 - Production/Stable",
# "Operating System :: OS Independent",
# "Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -37,7 +37,7 @@ Homepage = "https://msgpack.org/"
Documentation = "https://msgpack-python.readthedocs.io/"
Repository = "https://github.com/msgpack/msgpack-python/"
Tracker = "https://github.com/msgpack/msgpack-python/issues"
#Changelog = "https://github.com/msgpack/msgpack-python/blob/main/ChangeLog.rst"
Changelog = "https://github.com/msgpack/msgpack-python/blob/main/ChangeLog.rst"

[tool.setuptools.dynamic]
version = {attr = "msgpack.__version__"}
Expand Down