From 75d2b673d3a8059c48506ba83a1ab90892630f0e Mon Sep 17 00:00:00 2001 From: gbMichelle Date: Sat, 31 Oct 2020 00:47:07 +0100 Subject: [PATCH 1/2] Update build config for Python 3.9 --- .wheelman.yml | 6 ++++++ CHANGELOG.MD | 4 ++++ supyr_struct/__init__.py | 6 +++--- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.wheelman.yml b/.wheelman.yml index c0b855b..24d9491 100644 --- a/.wheelman.yml +++ b/.wheelman.yml @@ -40,4 +40,10 @@ targets: - python: "C:\\Python38-x64\\python.exe" wheel: True + + - python: "C:\\Python39\\python.exe" + wheel: True + + - python: "C:\\Python39-x64\\python.exe" + wheel: True sdist: True diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 9fab835..d922e26 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.5.3] +### Changed + - Update build config for Python 3.9. + ## [1.5.2] ### Changed - Fix readme potentially breaking setup. diff --git a/supyr_struct/__init__.py b/supyr_struct/__init__.py index db3b861..2d774da 100644 --- a/supyr_struct/__init__.py +++ b/supyr_struct/__init__.py @@ -85,10 +85,10 @@ # ############## # metadata # # ############## -__author__ = "Devin Bobadilla, Michelle van der Graaf" +__author__ = "Sigmmma" # YYYY.MM.DD -__date__ = "2020.02.14" -__version__ = (1, 5, 2) +__date__ = "2020.10.30" +__version__ = (1, 5, 3) __website__ = "https://github.com/Sigmmma/supyr_struct" From 99e648f602ad319dc8ed018fe24d185e6a066ade Mon Sep 17 00:00:00 2001 From: gbMichelle Date: Sat, 31 Oct 2020 01:05:54 +0100 Subject: [PATCH 2/2] Update classifiers --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index c176524..9cb470f 100644 --- a/setup.py +++ b/setup.py @@ -69,6 +69,7 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3 :: Only", ], zip_safe=False,