From 410d9b8b0616711d7d01a13bc5b473b4498df5f8 Mon Sep 17 00:00:00 2001 From: newhouse Date: Thu, 26 Dec 2024 22:22:51 -0500 Subject: [PATCH] some upgrades missed --- .python-version | 2 ++ .travis.yml | 2 +- README.md | 2 +- pyproject.toml | 4 +++- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.python-version b/.python-version index 550b84c..39f1618 100644 --- a/.python-version +++ b/.python-version @@ -1,3 +1,5 @@ 3.8.13 3.9.12 3.10.4 +3.11.11 +3.12.8 diff --git a/.travis.yml b/.travis.yml index 49c0668..ff2cebf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ dist: xenial language: python python: - - 3.6 + - 3.8 cache: pip: true diff --git a/README.md b/README.md index 39c93ad..27fe977 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ General API documentation: [Anvil API docs](https://www.useanvil.com/docs) ## Requirements -* Python 3.7.2+ +* Python >=3.8 ## Installation diff --git a/pyproject.toml b/pyproject.toml index 07ae36e..206cfa1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,8 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Libraries :: Python Modules", ] @@ -98,7 +100,7 @@ anvil = "python_anvil.cli:cli" [tool.black] -target-version = ["py37", "py38", "py39", "py310"] +target-version = ["py38", "py39", "py310", "py311", "py312"] skip-string-normalization = true [build-system]