Skip to content
Open
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
10 changes: 2 additions & 8 deletions .github/workflows/python-tests-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
lxml-version: ["4.3.5", "4.4.3", "4.5.2", "4.6.5", "4.7.1", "4.8.0", "4.9.4", "5.0.1", "5.1.1", "5.2.2", "5.3.2", "5.4.0", "6.0.2"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
lxml-version: ["4.6.5", "4.7.1", "4.8.0", "4.9.4", "5.0.1", "5.1.1", "5.2.2", "5.3.2", "5.4.0", "6.0.2"]
exclude:
- python-version: 3.10
lxml-version: 4.3.5
- python-version: 3.10
lxml-version: 4.4.3
- python-version: 3.10
lxml-version: 4.5.2
- python-version: 3.11
lxml-version: 4.3.5
- python-version: 3.11
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- service: let FunctionRequests return a list of EntityProxies instead of the raw json, when the `ReturnType` is a Collection. - Emil B.
- model: replace regexp-based ISO datetime parsing with `datetime.fromisoformat` for `Edm.DateTime` and `Edm.DateTimeOffset` - Petr Hanak

### Removed
- Python 3.9 is no longer supported by pyodata. Python 3.10 is now the minimal supported version.

## [1.11.2]

### 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.9](https://www.python.org/downloads/)
- [Python >= 3.10](https://www.python.org/downloads/)

## Download and Installation

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def _read(name):
long_description_content_type="text/markdown",
packages=find_packages(exclude=("tests")),
zip_safe=False,
python_requires='>=3.10',
install_requires=[
"lxml>=4.2.6",
],
Expand All @@ -59,7 +60,6 @@ def _read(name):
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
Expand Down
4 changes: 2 additions & 2 deletions tests/test_vendor_sap.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""PyOData Vendor SAP tests"""

import logging
from typing import NamedTuple, ByteString
from typing import NamedTuple
import pytest
from pyodata.exceptions import PyODataException, HttpError
from pyodata.vendor import SAP
Expand All @@ -11,7 +11,7 @@


class MockResponse(NamedTuple):
content: ByteString
content: bytes


@pytest.fixture
Expand Down
Loading