Skip to content

Commit

Permalink
Changes necessary for upcoming release.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 359499393
Change-Id: If2a030f3f4c934a00cee606f129119786a71c051
  • Loading branch information
lanctot authored and open_spiel@google.com committed Feb 25, 2021
1 parent 306a32f commit 4de00c5
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,6 @@ def _check_build_environment(self):
) from e
print("Found C++ compiler: {}".format(cxx))

try:
subprocess.check_call(["python3-config", "--help"])
except OSError as e:
ext_names = ", ".join(e.name for e in self.extensions)
raise RuntimeError(
"Python3 development files (python3-dev) must be installed to build"
+ "the following extensions: {}".format(ext_names)
) from e
print("Found python3 dev files.")

def build_extension(self, ext):
extension_dir = os.path.abspath(
os.path.dirname(self.get_ext_fullpath(ext.name)))
Expand Down Expand Up @@ -154,7 +144,7 @@ def _parse_line(s):

setuptools.setup(
name="open_spiel",
version="0.2.0rc4",
version="0.3.0",
license="Apache 2.0",
author="The OpenSpiel authors",
author_email="open_spiel@google.com",
Expand Down

0 comments on commit 4de00c5

Please sign in to comment.