Skip to content

Commit

Permalink
attempting to fix .so file handling
Browse files Browse the repository at this point in the history
  • Loading branch information
rallen10 committed Aug 14, 2024
1 parent 175cad6 commit f291264
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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).

## [UNRELEASED] - XXXX.XX.XX

### Added

### Fixed

+ Handling of `.so` files in package build

### Changed

### Removed

## [v0.8.0] - 2024.08.13

### Added
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "kspdg.__version__"}

# ensure that private_src pyarmor shared object files are part of kspdg build
[tool.setuptools.package-data]
your_package = ["*.so"]

[project.optional-dependencies]
testing = ["pytest","matplotlib"]
adv_bots = ["juliacall"]
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.8.0"
__version__ = "0.8.1-alpha"

# 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 f291264

Please sign in to comment.