From a0f6589110cf9abc5b5a61a8235e3216e3a1723b Mon Sep 17 00:00:00 2001 From: Justin Zhang Date: Sat, 2 Mar 2024 21:59:57 -0500 Subject: [PATCH] Python 3.11 (#48) --- CHANGELOG.md | 2 +- poetry.lock | 19 ++----------------- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12de023..8e21ec6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ x.y.z (UNRELEASED) 0.9.5 (2024-03-02) ------------------ -* Mandate Python 3.10 and Django 5.0.2 +* Mandate Python 3.11 and Django 5.0.2 0.9.4 (2023-08-27) ------------------ diff --git a/poetry.lock b/poetry.lock index 977be61..5e14752 100644 --- a/poetry.lock +++ b/poetry.lock @@ -11,9 +11,6 @@ files = [ {file = "asgiref-3.7.2.tar.gz", hash = "sha256:9e0ce3aa93a819ba5b45120216b23878cf6e8525eb3848653452b4192b92afed"}, ] -[package.dependencies] -typing-extensions = {version = ">=4", markers = "python_version < \"3.11\""} - [package.extras] tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] @@ -72,7 +69,6 @@ click = ">=8.0.0" mypy-extensions = ">=0.4.3" pathspec = ">=0.9.0" platformdirs = ">=2" -tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""} [package.extras] colorama = ["colorama (>=0.4.3)"] @@ -842,17 +838,6 @@ files = [ {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, ] -[[package]] -name = "tomli" -version = "2.0.1" -description = "A lil' TOML parser" -optional = false -python-versions = ">=3.7" -files = [ - {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, - {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, -] - [[package]] name = "typing-extensions" version = "4.10.0" @@ -894,5 +879,5 @@ zstd = ["zstandard (>=0.18.0)"] [metadata] lock-version = "2.0" -python-versions = "^3.10" -content-hash = "16df6e204d1d9d7873db069bc3a09f2f808c85c35ef0c16d24080d4c09d74a9a" +python-versions = "^3.11" +content-hash = "cdec3866877f5b09c90f0b9ded4bf473c3233e1f79fb5a325c6c1d17f56352a6" diff --git a/pyproject.toml b/pyproject.toml index 8b93431..1589b2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ packages = [ ] [tool.poetry.dependencies] -python = "^3.10" +python = "^3.11" Django = "^5.0.2" requests-oauthlib = "^1.3.1" requests = "^2.0.0"