Skip to content

Commit 77a353e

Browse files
committed
ci: test more recent HTTPX
1 parent dd71445 commit 77a353e

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ jobs:
7272
- "3.9.0"
7373
- "3.10.0"
7474
- "3.11.0"
75+
package-extras:
76+
- "ci-earliest"
77+
- "ci-latest"
78+
exclude:
79+
- python-version: "3.6.7"
80+
package-extras: "ci-latest"
7581
runs-on: '${{ matrix.os }}'
7682
env:
7783
SQLITE3_VERSION: ${{ matrix.sqlite-version }}
@@ -107,7 +113,7 @@ jobs:
107113
echo "LIBSQLITE3_PATH=${PWD}/libsqlite3.so.0" >> "$GITHUB_ENV"
108114
- name: "Install sqlite-s3-query and any dependencies"
109115
run: |
110-
pip install ".[dev,ci]"
116+
pip install ".[dev,${{ matrix.package-extras }}]"
111117
- name: "Test (Windows)"
112118
if: matrix.os == 'windows-2019'
113119
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,4 +228,4 @@ It is safe for multiple threads to call the same `query` function. Under the hoo
228228
- Linux (tested on Ubuntu 20.04), Windows (tested on Windows Server 2019), or macOS (tested on macOS 11)
229229
- SQLite >= 3.7.15, (tested on 3.7.15, 3.36.0, 3.42.0, and the default version available on each OS tested)
230230
- Python >= 3.6.7 (tested on 3.6.7, 3.7.1, 3.8.0, 3.9.0, 3.10.0, and 3.11.0)
231-
- HTTPX >= 0.18.2 (tested on 0.18.2)
231+
- HTTPX >= 0.18.2 (tested on 0.18.2 with Python >= 3.6.7, and 0.24.1 with Python >= 3.7.1)

codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
comment: false
22
codecov:
33
notify:
4-
after_n_builds: 72
4+
after_n_builds: 132

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,12 @@ dependencies = [
2424
dev = [
2525
"coverage",
2626
]
27-
ci = [
27+
ci-earliest = [
2828
"httpx==0.18.2",
2929
]
30+
ci-latest = [
31+
"httpx==0.24.1",
32+
]
3033

3134
[project.urls]
3235
"Home-page" = "https://github.com/michalc/sqlite-s3-query"

0 commit comments

Comments
 (0)