Skip to content

Commit

Permalink
version 1.0.5 fixes mistake with inclusion of h files
Browse files Browse the repository at this point in the history
  • Loading branch information
benja263 committed Nov 7, 2024
1 parent 437619f commit cd44b0a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ include gbrl/src/cuda/CMakeLists.txt
include gbrl/src/cpp/*.cpp
include gbrl/src/cpp/*.h
include gbrl/src/cpp/CMakeLists.txt
recursive-include gbrl/include *
include README.md
include LICENSE
include LICENSES.txt
Expand Down
2 changes: 1 addition & 1 deletion gbrl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://nvlabs.github.io/gbrl/license.html
#
##############################################################################
__version__ = "1.0.4"
__version__ = "1.0.5"

from .ac_gbrl import (ActorCritic, GaussianActor, ContinuousCritic,
DiscreteCritic, ParametricActor)
Expand Down
2 changes: 1 addition & 1 deletion gbrl/src/cpp/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

#define MAJOR_VERSION 1
#define MINOR_VERSION 0
#define PATCH_VERSION 4
#define PATCH_VERSION 5

#endif // VERSION_CONFIG_H
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "gbrl"
version = "1.0.4"
version = "1.0.5"
description = "Gradient Boosted Trees for RL"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
Expand Down Expand Up @@ -43,7 +43,7 @@ requires-python = ">=3.9"

[tool.poetry]
name = "gbrl"
version = "1.0.4"
version = "1.0.5"
description = "Gradient Boosted Trees for RL"
authors = ["Benjamin Fuhrer <[email protected]>", "Chen Tessler <[email protected]>", "Gal Dalal <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def move_built_library(self, build_temp):

setup(
name="gbrl",
version = "1.0.4",
version = "1.0.5",
description = "Gradient Boosted Trees for RL",
author="Benjamin Fuhrer, Chen Tessler, Gal Dalal",
author_email="[email protected], [email protected]. [email protected]",
Expand Down

0 comments on commit cd44b0a

Please sign in to comment.