Skip to content

Commit 8e2087e

Browse files
authored
Merge pull request #548 from seapagan/fix-pagination
Fix pagination crash
2 parents f9d3a67 + b28f420 commit 8e2087e

File tree

6 files changed

+1020
-993
lines changed

6 files changed

+1020
-993
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,8 @@ sketch
239239
**/data/*/*.csv
240240
# but keep these header files for now.
241241
!**/data/header-files/*.csv
242+
# ignore any tar.gz in the data folder
243+
**/data/*/*.tar.gz
242244
# ignore the below dir .keep files used to store full data during tests...
243245
data/raw-csv-full/.keep
244246
data/raw-csv-small/.keep

pyproject.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ readme = "README.md"
88
requires-python = ">=3.10"
99

1010
dependencies = [
11-
"asyncpg ==0.30.0",
12-
"dask[dataframe,distributed] ==2025.4.1",
13-
"fastapi ==0.115.12",
14-
"fastapi-pagination ==0.13.1",
15-
"pandas ==2.2.3",
16-
"psycopg2 ==2.9.10",
17-
"python-dotenv ==1.1.0",
18-
"rich ==14.0.0",
19-
"simple-toml-settings ==0.9.0",
20-
"sqlalchemy ==2.0.40",
21-
"tqdm ==4.67.1",
22-
"uvicorn[standard] ==0.34.2",
11+
"asyncpg>=0.30.0",
12+
"dask[dataframe,distributed]>=2025.4.1",
13+
"fastapi>=0.115.12",
14+
"fastapi-pagination==0.12.34",
15+
"pandas>=2.2.3",
16+
"psycopg2>=2.9.10",
17+
"python-dotenv>=1.1.0",
18+
"rich>=14.0.0",
19+
"simple-toml-settings>=0.9.0",
20+
"sqlalchemy>=2.0.40",
21+
"tqdm>=4.67.1",
22+
"uvicorn[standard]>=0.34.2",
2323
]
2424

2525

0 commit comments

Comments
 (0)