diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index da1fed39..a909342b 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -40,7 +40,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest] # [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, macos-latest] # [ubuntu-latest, windows-latest, macos-latest] steps: - uses: actions/checkout@v2 @@ -59,8 +59,8 @@ jobs: # To use C++17 features # https://cibuildwheel.readthedocs.io/en/stable/cpp_standards/#manylinux1-and-c14 MACOSX_DEPLOYMENT_TARGET: "10.15" # requires 10.15 - CIBW_BUILD: cp37-* # cp37-* cp38-* cp39-* importlib.resources requires >= 3.7 - CIBW_SKIP: pp* cp27-win* cp35-* cp36-* cp38-* cp39-* *win* + CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-* # cp37-* cp38-* cp39-* importlib.resources requires >= 3.7 + CIBW_SKIP: pp* cp27-win* cp35-* cp36-* *win* # https://cibuildwheel.readthedocs.io/en/stable/options/#archs # universal2 arch raises this error: # CMake Error at mjx/external/grpc-src/third_party/boringssl-with-bazel/CMakeLists.txt:52 (message): Universal binaries not supported. diff --git a/README.md b/README.md index 629f9ba7..310cca2e 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Mjx is a Japanese Mahjong (riichi Mahjong) simulator. Mjx works as a game server as [Mjai](https://github.com/gimite/mjai), a popular Mahjong simulator, to evaluate Mahjong AIs but have additional features: -* **Fast.** (100x faster than [Mjai](https://github.com/gimite/mjai), a popular Mahjong simulator) +* **Fast** (100x faster than [Mjai](https://github.com/gimite/mjai)) * **Exact [Tenhou](https://tenhou.net/) compatibility** (Mjx is validated with numerous Tenhou game logs) * **Gym-like API** * **Easy distributed computing** (available for large-scale RL and evaluation thanks to [gRPC](https://github.com/grpc/grpc)) diff --git a/setup.py b/setup.py index fab2cefe..e113d38c 100644 --- a/setup.py +++ b/setup.py @@ -137,7 +137,7 @@ def build_extension(self, ext): # logic and declaration, and simpler if you include description/version in a file. setup( name="mjx", - version="0.0.11", + version="0.1.0", author="Mjx Project Team", author_email="koyamada-s@sys.i.kyoto-u.ac.jp", description="",