Skip to content

Commit

Permalink
bumping to v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rallen10 committed Dec 16, 2024
1 parent 7d0abe6 commit e100683
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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
## [v0.11.0] - 2024.12.16

### Added

Expand Down Expand Up @@ -44,6 +44,24 @@ kspdg-evaluate path/to/cfg.yml optional/path/to/results/
### Removed

+ Unused `astropy` dependency and related instructions in readme
+ `environment.yml` and developer instructions in readme as they are not needed by, and may confuse, end-users and are easy to reprodocue for developers. For example, developers can use the following process:
```bash
# create conda development environment
conda create --name kspdg_dev python=3.12 ipython
conda activate kspdg_dev

# clone kspdg repo and install as editable
git clone [email protected]:mit-ll/spacegym-kspdg.git
cd spacegym-kspdg
pip install -e .[full]

# copy necessary game files to KSP install
kspdg-install-ksp-files

# instal juliaup and julia dependencies
curl -fsSL https://install.julialang.org | sh
kspdg-install-julia-deps
```

## [v0.10.0] - 2024.12.09

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.10.0"
__version__ = "0.11.0"

# these imports make the individual environments accessible at the top-level
# of the library and assign an environment version number
Expand Down
4 changes: 2 additions & 2 deletions src/kspdg/scripts/install_ksp_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ def setup_kspdg_game_data_dir(kspdg_path_in, ksp_game_path_in):
raise FileNotFoundError(f"Example eval config not found in kspdg install: {kspdg_example_eval_cfg_path}")

shutil.copy(kspdg_example_eval_cfg_path, ksp_example_eval_cfg_path)
print(f"Copied example.yaml from '{kspdg_example_eval_cfg_path}' to '{ksp_example_eval_cfg_path}'.")
print(f"Copied example_eval_cfg.yamlfrom '{kspdg_example_eval_cfg_path}' to '{ksp_example_eval_cfg_path}'.")
else:
print(f"File 'example.yaml' already exists in '{ksp_example_eval_cfg_path}'. It will not be overwritten.")
print(f"File 'example_eval_cfg.yaml' already exists in '{ksp_example_eval_cfg_path}'. It will not be overwritten.")

def main():

Expand Down

0 comments on commit e100683

Please sign in to comment.