diff --git a/.github/actions/setup-database/action.yml b/.github/actions/setup-database/action.yml index d5491525de..47a0020d64 100644 --- a/.github/actions/setup-database/action.yml +++ b/.github/actions/setup-database/action.yml @@ -23,7 +23,7 @@ runs: if: ${{ inputs.database == 'postgresql' }} uses: harmon758/postgresql-action@v1 with: - postgresql version: "12" + postgresql version: "13" postgresql db: "evennia" postgresql user: "evennia" postgresql password: "password" diff --git a/pyproject.toml b/pyproject.toml index ac9df2c4e2..44ad709be9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "evennia" version = "4.5.0" maintainers = [{ name = "Griatch", email = "griatch@gmail.com" }] description = "A full-featured toolkit and server for text-based multiplayer games (MUDs, MU*, etc)." -requires-python = ">=3.10" +requires-python = ">=3.11" readme = { file = "README.md", content-type = "text/markdown" } license = { text = "BSD" } keywords = [ @@ -38,8 +38,9 @@ keywords = [ ] classifiers = [ "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: JavaScript", "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: BSD License",