Skip to content

Commit

Permalink
Bump minimum to Python 3.10
Browse files Browse the repository at this point in the history
Something about datetime's isoformat handling changed in 3.11 and I don't feel like special casing everything
  • Loading branch information
sco1 committed Aug 7, 2023
1 parent 3184211 commit e6d8efe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12-dev"]
python-version: ["3.11", "3.12-dev"]
fail-fast: false

steps:
Expand Down
38 changes: 2 additions & 36 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
Expand All @@ -30,7 +29,7 @@ include = [
dropmate = "dropmate_py.cli:dropmate_cli"

[tool.poetry.dependencies]
python = "^3.10"
python = "^3.11"
python-dotenv = "^1.0"
sco1-misc = "^0.1"
typer = "^0.9"
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exclude_also =
if __name__ == "__main__":

[tox]
envlist = clean,py{310,311,312},cog
envlist = clean,py{311,312},cog
skip_missing_interpreters = True
minversion = 3.14.0
isolated_build = True
Expand All @@ -40,6 +40,5 @@ deps =

[gh-actions] # For tox GHA
python =
3.10: py310
3.11: py311
3.12: py312

0 comments on commit e6d8efe

Please sign in to comment.