Skip to content

Commit

Permalink
Update build config for Python 3.9 (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShellyHerself authored Oct 31, 2020
2 parents 66a17cb + 99e648f commit 7ce60c4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .wheelman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 4 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -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.4]
### Changed
- Update build config for Python 3.9.

## [1.5.3]
### Changed
- Fix incorrect feeding of data in split path
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions supyr_struct/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@
# ##############
# metadata #
# ##############
__author__ = "Devin Bobadilla, Michelle van der Graaf"
__author__ = "Sigmmma"
# YYYY.MM.DD
__date__ = "2020.09.30"
__version__ = (1, 5, 3)
__date__ = "2020.10.30"
__version__ = (1, 5, 4)
__website__ = "https://github.com/Sigmmma/supyr_struct"


Expand Down

0 comments on commit 7ce60c4

Please sign in to comment.