Skip to content

Commit

Permalink
Python >=3.9 required.
Browse files Browse the repository at this point in the history
  • Loading branch information
coady committed Nov 26, 2023
1 parent 4388cfc commit 7bfb8f8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0-alpha - 3.13']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13.0-alpha - 3.13']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## Unreleased
### Changed
* Python >=3.9 required

## [1.4](https://pypi.org/project/waiter/1.4/) - 2023-11-09
### Changed
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Expand Up @@ -7,7 +7,7 @@ name = "waiter"
dynamic = ["version"]
description = "Delayed iteration for polling and retries."
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
authors = [{name = "Aric Coady", email = "aric.coady@gmail.com"}]
keywords = ["wait", "retry", "poll", "delay", "sleep", "timeout", "incremental", "exponential", "backoff", "async"]
Expand All @@ -17,7 +17,6 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
4 changes: 2 additions & 2 deletions waiter/__init__.py
Expand Up @@ -7,9 +7,9 @@
import random
import time
import types
from collections.abc import AsyncIterable, Callable, Iterable, Sequence
from collections.abc import AsyncIterable, Callable, Iterable, Iterator, Sequence
from functools import partial
from typing import Iterator, Optional
from typing import Optional
from multimethod import multimethod, overload

__version__ = '1.4'
Expand Down

0 comments on commit 7bfb8f8

Please sign in to comment.