Releases: mit-ll/spacegym-kspdg
Releases · mit-ll/spacegym-kspdg
v0.9.0
Added
- Platform (e.g. Windows, Mac, Linux) and architecture (e.g. x86_64, arm64) specific private source environments and evaluate.py
- New
utils/private_src_utils.py
module that provides helper functions for managing obfuscated code imports
Fixed
- Conditional statements for importing LBG1_LG3 environments so that the lighter-weight install of kspdg without
juliacall
dependency does not error on import - Handling of SSL_CERT_FILE in
install_julia_deps.py
Changed
- Updating environment READMEs for accuracy
- Updating top-level README to simplify installation process
Removed
- Removed unused astropy imports in
utils.py
Full Changelog: v0.8.1...v0.9.0
v0.9.0-beta
Added
- Platform (e.g. Windows, Mac, Linux) and architecture (e.g. x86_64, arm64) specific private source environments and evaluate.py
- New
utils/private_src_utils.py
module that provides helper functions for managing obfuscated code imports
Fixed
- Conditional statements for importing LBG1_LG3 environments so that the lighter-weight install of kspdg without
juliacall
dependency does not error on import
Changed
- Updating environment READMEs for accuracy
- Updating top-level README to simplify installation process
Removed
- Removed unused astropy imports in
utils.py
Full Changelog: v0.9.0-alpha...v0.9.0-beta
v0.9.0-alpha
Added
- Platform (e.g. Windows, Mac, Linux) and architecture (e.g. x86_64, arm64) specific private source environments and evaluate.py
Changed
- Updating environment READMEs for accuracy
- Updating top-level README to simplify installation process
Full Changelog: v0.8.1...v0.9.0-alpha
v0.8.1
Adding .so
files as package data for proper function of private_src
Full Changelog: v0.8.0...v0.8.1
v0.8.1-alpha
trying to fix .so handling
v0.8.0
Restructured and streamlined evaluate.py
to use private_src/
and eliminate the need for manual selection of python version
Added
private_src/python3_XX/kspdg_envs/dist_evaluate.py
which replaceevaluation/evaluate.py
that replacesevaluation/evaluate.cpython-39.pyc
andevaluation/evaluate.cpython-312.pyc
by automatically detecting which python version is in use and importing the appropriateprivate_src/python3_XX/kspdg_envs/dist_evaluate.py
for use
Removed
evaluation/evaluate.cpython-39.pyc
andevaluation/evaluate.cpython-312.pyc
, replaced with singleevaluation/evaluate.py
that in turn imports version-specific code fromprivate_src
Full Changelog: v0.7.0...v0.8.0
v0.7.0
Introducing private-source, code-obfuscated environments with advanced bot policies that depend on Julia libraries
Added
private_src
directory to hold all compiled and/or obfuscated source code (e.g. to obfuscate bot policies in environments)- 'lg3_envs.py` that use ilqgames-based Guard agent
juliacall
dependency including basic unit tests to check proper installationiLQGames.jl
dependency and python scriptinstall_julia_deps.py
for partially automating the install process- new optional dependency groups in
pyproject.toml
:adv_bots
with juliacall dependency andfull
which installs all other dependency groups scripts/example_private_src_env_runner.py
as an example of running and debugging private-source, advanced-bot environmentLBG1_LG3_I2_V1
- 'matplotlib' dependency for testing group
- 2025 AIAA SciTech competition anouncement to
README.md
Fixed
- Cleaning up inaccurate docstring
Changed
- Updated
example_eval_cfg.yaml
and related instructions in README to point to the private-source LBG1_LG3_I2_V1 environment - Expanded DEBUG logger for better introspection on thread execution
Removed
- 'scripts/basic_evade_v20220509001.py' to cleanup unused code
- obsolete
pe20220516
environments
Full Changelog: v0.6.2...v0.7.0
v0.6.2
Added
logger
toKSPDGBaseAgent
for unified logging interface for all child class agents
Changed
logger_name
forKSPDGBaseEnv
to point to the child class environment name for better specificity of origin of log statements (i.e. a log statement with child's name but originating in the parent class is more traceable than a log statement with the parent's name but originating in the child class)
Full Changelog: v0.6.1...v0.6.2
v0.6.1
Added
- Ability to check versioning on
evaluation/evaluate.cpython-XXX.pyc
, which is different than kspdg version number. Check with
conda activate kspdg
python evaluation/evaluate.cpython-312.pyc --version
Fixed
- Updated
evaluation/evaluate.cpython-XXX.pyc
to work with new kspdg packaging
Full Changelog: v0.6.0...v0.6.1
v0.6.0
Migration to pyproject.toml
packaging
Added
pyproject.toml
for package and dependency management
Changed
- Updated
setup.py
to delegate most package management topyproject.toml
; maintains the get_version functionality - Updated copyright year in headers
Removed
setup.py
andversion.py
since single-source version moved topyproject.toml
andkspdg/__init__.py
. See https://packaging.python.org/en/latest/guides/single-sourcing-package-version/requirements.txt
since there are no "pinned" or "concrete" dependencies as kspdg is not (yet?) intended to be released as a stand-alone app. For further information about the intended role of requirements.txt, see and setup vs requirements and use of requirements w/ pyproject- KSPDG Challenge announcement from README
Full Changelog: v0.5.1...v0.6.0