Skip to content

Commit

Permalink
Update build config for Python 3.9 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShellyHerself authored Oct 31, 2020
2 parents 361559b + 95436cc commit d43e944
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.1.2]
### Changed
- Update build config for Python 3.9.

## [1.1.1]
- Fix readme potentially breaking setup.

Expand Down
6 changes: 3 additions & 3 deletions arbytmap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# ##############
# metadata #
# ##############
__author__ = "Devin Bobadilla"
__author__ = "Sigmmma"
# YYYY.MM.DD
__date__ = "2020.02.14"
__version__ = (1, 1, 1)
__date__ = "2020.10.30"
__version__ = (1, 1, 2)

from arbytmap import constants
from arbytmap.arby import *
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,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",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Programming Language :: C",
Expand Down

0 comments on commit d43e944

Please sign in to comment.