Skip to content

Commit

Permalink
adding py 3.13 binaries to package data list; bumping version
Browse files Browse the repository at this point in the history
  • Loading branch information
rallen10 committed Dec 2, 2024
1 parent 7fc707b commit 0ede7b7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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).

## [0.9.1] - 2024.12.02

### Added

+ Support for python 3.13 in private_src obfuscated code

## [v0.9.0] - 2024.09.10

### Added
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ kspdg = [
"private_src/python3_12/Darwin_arm64/pyarmor_runtime_000000/*.so",
"private_src/python3_12/Darwin_x86_64/pyarmor_runtime_000000/*.so",
"private_src/python3_12/Linux_x86_64/pyarmor_runtime_000000/*.so",
"private_src/python3_12/Windows_x86_64/pyarmor_runtime_000000/*.pyd"
"private_src/python3_12/Windows_x86_64/pyarmor_runtime_000000/*.pyd",
"private_src/python3_13/Darwin_arm64/pyarmor_runtime_000000/*.so",
"private_src/python3_13/Darwin_x86_64/pyarmor_runtime_000000/*.so",
"private_src/python3_13/Linux_x86_64/pyarmor_runtime_000000/*.so",
"private_src/python3_13/Windows_x86_64/pyarmor_runtime_000000/*.pyd"
]

# Further dependencies for dev, testing, and envrionments with advanced bots
Expand Down
2 changes: 1 addition & 1 deletion src/kspdg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Single-sourcing package version
# https://packaging.python.org/guides/single-sourcing-package-version/

__version__ = "0.9.0"
__version__ = "0.9.1"

# these imports make the individual environments accessible at the top-level
# of the library and assign an environment version number
Expand Down

0 comments on commit 0ede7b7

Please sign in to comment.