Skip to content

Commit

Permalink
chore: update Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
serhii73 committed Oct 23, 2024
1 parent 6bf7b35 commit 09788f0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ jobs:
fail-fast: false
matrix:
include:
- python-version: "3.7"
- python-version: "3.9"
env:
TOXENV: py
- python-version: "3.8"
- python-version: "3.10"
env:
TOXENV: py
- python-version: "3.9"
- python-version: "3.11"
env:
TOXENV: py
- python-version: "3.10"
- python-version: "3.12"
env:
TOXENV: py
- python-version: "3.11"
- python-version: "3.13"
env:
TOXENV: py
- python-version: "3.11"
- python-version: "3.13"
env:
TOXENV: flake8
steps:
Expand All @@ -45,7 +45,7 @@ jobs:
- name: tox
run: tox -e py
- name: Upload coverage.xml to codecov
if: ${{ matrix.python-version == '3.11' && matrix.env.TOXENV == 'py'}}
if: ${{ matrix.python-version == '3.13' && matrix.env.TOXENV == 'py'}}
uses: codecov/codecov-action@v3

pre-commit:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Installation

pip install number-parser

number-parser requires Python 3.7+.
number-parser requires Python 3.9+.

Usage
=====
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
],
)

0 comments on commit 09788f0

Please sign in to comment.