From d43712b5250d264d53532fcb87cdeec6bcf5eca7 Mon Sep 17 00:00:00 2001 From: WinterPhoenix Date: Thu, 12 Sep 2024 23:46:54 -0400 Subject: [PATCH] Bump version to v4.0, Update contact info, and Add 3.10-3.12 to supported version list --- setup.py | 9 ++++++--- vdf/__init__.py | 4 ++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 7cc81e4..2db8734 100644 --- a/setup.py +++ b/setup.py @@ -14,9 +14,9 @@ version=vdf.__version__, description='Library for working with Valve\'s VDF text format', long_description=long_description, - url='https://github.com/ValvePython/vdf', - author='Rossen Georgiev', - author_email='rossen@rgp.io', + url='https://github.com/solsticegamestudios/vdf', + author='Rossen Georgiev / Solstice Game Studios', + author_email='py-vdf@solsticegamestudios.com', license='MIT', python_requires=">=3.6", classifiers=[ @@ -30,6 +30,9 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: Implementation :: PyPy', ], keywords='valve keyvalue vdf tf2 dota2 csgo', diff --git a/vdf/__init__.py b/vdf/__init__.py index 66428c6..f80fd13 100644 --- a/vdf/__init__.py +++ b/vdf/__init__.py @@ -1,8 +1,8 @@ """ Module for deserializing/serializing to and from VDF """ -__version__ = "3.5" -__author__ = "Rossen Georgiev" +__version__ = "4.0" +__author__ = "Rossen Georgiev / Solstice Game Studios" import re import struct