Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Agony5757 committed Jan 10, 2025
1 parent f077bce commit 252ae94
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import os
import subprocess
import sys
import re

with open("README.md", 'r', encoding = 'utf-8') as fp:
readme = fp.read()
Expand Down Expand Up @@ -145,7 +146,7 @@ def build_extension(self, ext):

setup(
name = "pymahjong",
version = "1.0.4",
version = "1.0.5",
author = "Agony",
author_email = "chenzhaoyun@iai.ustc.edu.cn",
description= "A Japanese Mahjong environment for decision AI research.",
Expand All @@ -160,5 +161,5 @@ def build_extension(self, ext):
packages = ['pymahjong'],
install_requires=['numpy', 'gym<=0.26.2'],
zip_safe = False,
python_requires='>=3.6',
python_requires='>=3.8',
)

0 comments on commit 252ae94

Please sign in to comment.