Skip to content

Commit

Permalink
Fix python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
fwkz committed Jan 16, 2024
1 parent 254c5a1 commit 88c01ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
os: [macOS-10.15, ubuntu-22.04]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
{name = "Mariusz Kupidura"},
]
dynamic = ["version"]
requires-python = ">= 3.7"
requires-python = ">= 3.6"
readme = "README.md"
license = {file = "LICENSE"}
classifiers=[
Expand All @@ -19,7 +19,6 @@ classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 88c01ba

Please sign in to comment.