Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update Python version #96

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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",
],
)
Loading