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: remove py3.7 compatibility #281

Merged
merged 1 commit into from
Jul 10, 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
12 changes: 2 additions & 10 deletions .github/workflows/python-tests-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
lxml-version: ["4.1.1", "4.2.6", "4.3.5", "4.4.3", "4.5.2", "4.6.5", "4.7.1", "4.8.0", "4.9.1", "4.9.4", "5.0.1", "5.1.0"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
lxml-version: ["4.2.6", "4.3.5", "4.4.3", "4.5.2", "4.6.5", "4.7.1", "4.8.0", "4.9.1", "4.9.4", "5.0.1", "5.1.0"]
exclude:
- python-version: 3.9
lxml-version: 4.1.1
- python-version: 3.9
lxml-version: 4.2.6
- python-version: 3.10
lxml-version: 4.1.1
- python-version: 3.10
lxml-version: 4.2.6
- python-version: 3.10
Expand All @@ -35,8 +31,6 @@ jobs:
lxml-version: 4.4.3
- python-version: 3.10
lxml-version: 4.5.2
- python-version: 3.11
lxml-version: 4.1.1
- python-version: 3.11
lxml-version: 4.2.6
- python-version: 3.11
Expand All @@ -51,8 +45,6 @@ jobs:
lxml-version: 4.7.1
- python-version: 3.11
lxml-version: 4.8.0
- python-version: 3.12
lxml-version: 4.1.1
- python-version: 3.12
lxml-version: 4.2.6
- python-version: 3.12
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]


### Removed
- Python 3.7 (long after its EOL) is no longer supported by pyodata. Python 3.8 is now minimal supported version. - Petr Hanak

## [1.11.1]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ details.

## Requirements

- [Python >= 3.7](https://www.python.org/downloads/)
- [Python >= 3.8](https://www.python.org/downloads/)

## Download and Installation

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lxml>=4.1.1
lxml>=4.2.6
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def _read(name):
packages=find_packages(exclude=("tests")),
zip_safe=False,
install_requires=[
"lxml>=4.1.1",
"lxml>=4.2.6",
],
extras_require={
},
Expand All @@ -59,7 +59,6 @@ def _read(name):
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down
Loading