Skip to content

Commit 5441000

Browse files
committed
Require lz4 min supported version on Py3.6
1 parent ad86705 commit 5441000

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v3
21+
uses: actions/setup-python@v4
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
- name: Install dependencies

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lz4==3.1.10
1+
lz4>=3.1.10 # last version to support Python 3.6

src/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
url="https://github.com/sqlitecloud/python",
1717
packages=find_packages(),
1818
install_requires=[
19-
"lz4 == 3.1.10",
19+
"lz4 >= 3.1.10",
2020
],
2121
classifiers=[
2222
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)