Skip to content

Commit 4e57413

Browse files
committed
Merge pull request #1370 from google-deepmind:lanctot-patch-75
PiperOrigin-RevId: 813815969 Change-Id: Ib8610e6a6198535129edcf3bfb9fa2152812af28
2 parents 8623024 + ddd0502 commit 4e57413

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/wheels.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
include:
31-
- os: ubuntu-22.04
31+
- os: ubuntu-24.04
3232
NAME: "Linux"
3333
OS_TYPE: "Linux"
3434
CI_PYBIN: python3
@@ -59,12 +59,12 @@ jobs:
5959
# Disabling now that the OpenSpiel 1.4 wheels are on PyPI because these xlarge machines are
6060
# quite costly... we don't want to run these on every PR.
6161
# TODO(author5): Set this to macos-13 once these runners are no longer in beta
62-
#- os: macos-13-xlarge
63-
# OS_TYPE: "Darwin"
64-
# CI_PYBIN: python3.11
65-
# OS_PYTHON_VERSION: 3.11
66-
# CIBW_ENVIRONMENT: "OPEN_SPIEL_BUILDING_WHEEL='ON' OPEN_SPIEL_BUILD_WITH_ACPC='ON' OPEN_SPIEL_BUILD_WITH_HANABI='ON' OPEN_SPIEL_BUILD_WITH_ROSHAMBO='ON'"
67-
# CIBW_BUILD: cp39-macosx_arm64 cp310-macosx_arm64 cp311-macosx_arm64 cp312-macosx_arm64
62+
# - os: macos-13-xlarge
63+
# OS_TYPE: "Darwin"
64+
# CI_PYBIN: python3.11
65+
# OS_PYTHON_VERSION: 3.11
66+
# CIBW_ENVIRONMENT: "OPEN_SPIEL_BUILDING_WHEEL='ON' OPEN_SPIEL_BUILD_WITH_ACPC='ON' OPEN_SPIEL_BUILD_WITH_HANABI='ON' OPEN_SPIEL_BUILD_WITH_ROSHAMBO='ON'"
67+
# CIBW_BUILD: cp39-macosx_arm64 cp310-macosx_arm64 cp311-macosx_arm64 cp312-macosx_arm64
6868
env:
6969
OPEN_SPIEL_BUILDING_WHEEL: ON
7070
OPEN_SPIEL_BUILD_WITH_ACPC: ON

open_spiel/python/pybind11/pyspiel.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
#include "open_spiel/python/pybind11/games_universal_poker.h"
8787
#endif
8888

89-
#define PYSPIEL_VERSION "1.6.1"
89+
#define PYSPIEL_VERSION "1.6.2"
9090

9191
// Flags governing Open Spiel behaviour
9292
ABSL_FLAG(bool, log_exceptions_to_stderr, true,

open_spiel/scripts/test_wheel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fi
6262

6363
if [[ "$MODE" = "full" ]]; then
6464
if [[ "$OS" = "Linux" ]]; then
65-
${PYBIN} -m pip install wheelhouse/open_spiel-*-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
65+
${PYBIN} -m pip install wheelhouse/open_spiel-*-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
6666
elif [[ "$OS" = "Darwin" && "$OS_PYTHON_VERSION" = "3.9" ]]; then
6767
${PYBIN} -m pip install wheelhouse/open_spiel-*-cp39-cp39-macosx_10_9_x86_64.whl
6868
elif [[ "$OS" = "Darwin" && "$OS_PYTHON_VERSION" = "3.11" ]]; then

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def _parse_line(s):
124124

125125
setuptools.setup(
126126
name="open_spiel",
127-
version="1.6.1",
127+
version="1.6.2",
128128
license="Apache 2.0",
129129
author="The OpenSpiel authors",
130130
author_email="open_spiel@google.com",

0 commit comments

Comments
 (0)