Skip to content

Commit

Permalink
Drop Python 3.8 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmlorg committed Nov 14, 2024
1 parent 80791e8 commit 6ac608a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = 'README.md'
authors = [
{name = 'Daniel Reed', email = '[email protected]'},
]
requires-python = '>=3.8'
requires-python = '>=3.9'
dependencies = [
'googlemaps',
'ntelebot >= 0.4.4',
Expand Down

0 comments on commit 6ac608a

Please sign in to comment.