Skip to content

Commit

Permalink
Python3.13 support (#1283)
Browse files Browse the repository at this point in the history
  • Loading branch information
sotetsuk authored Nov 14, 2024
1 parent eece484 commit a5fcb80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: "${{ matrix.os }}"
strategy:
matrix:
python-version: ["3.9", "3.12"]
python-version: ["3.9", "3.13"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def _read_requirements(fname):

setup(
name="pgx",
description="GPU/TPU-accelerated parallel game simulators for reinforcement learning (RL)",
description="GPU-accelerated parallel game simulators for reinforcement learning (RL)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sotetsuk/pgx",
Expand All @@ -30,5 +30,6 @@ def _read_requirements(fname):
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)

0 comments on commit a5fcb80

Please sign in to comment.