Skip to content

Commit

Permalink
Remove python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
remia committed Oct 14, 2023
1 parent 4557e1a commit d5446ef
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
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:
- name: Clone repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: macos-12
strategy:
matrix:
python-version: ["3.7", "3.12"]
python-version: ["3.8", "3.12"]
steps:
- name: Clone repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
runs-on: windows-2022
strategy:
matrix:
python-version: ["3.7", "3.12"]
python-version: ["3.8", "3.12"]
steps:
- name: Clone repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Installation

Requirements:

- Python: 3.7 or later
- Python: 3.8 or later
- Platform: Windows (with limitations), macOS, Linux
- External (non-python) dependencies:
- asdcplib
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "BSD-3-Clause"
readme = "README.rst"

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
lxml = "^4.9.3"
dicttoxml = "^1.7.16"
xmltodict = "^0.13.0"
Expand All @@ -23,8 +23,8 @@ freetype-py = "^2.4.0"
[tool.poetry.group.dev.dependencies]
coverage = "^7.3.2"
pytest = "^7.4.2"
ruff = { version = "^0.0.292", python = "^3.8" }
black = { version = "^23.9.1", python = "^3.8" }
ruff = "^0.0.292"
black = "^23.9.1"

[build-system]
requires = ["poetry-core"]
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -51,7 +50,7 @@
"shutilwhich",
"freetype-py",
],
python_requires=">=3.7",
python_requires=">=3.8",
package_data={
"clairmeta": ["xsd/*"],
},
Expand Down

0 comments on commit d5446ef

Please sign in to comment.