Skip to content

Commit

Permalink
JFetcher v3.4.1
Browse files Browse the repository at this point in the history
错误修复:

- 修复 `psycopg` 导入失败的问题
  • Loading branch information
FHU-yezi committed Oct 8, 2024
2 parents 190d126 + a3730c6 commit 89438b4
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ networks:

services:
main:
image: jfetcher:3.4.0
image: jfetcher:3.4.1
container_name: jfetcher
build: .
volumes:
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "jfetcher"
version = "3.4.0"
version = "3.4.1"
description = "简书数据采集工具"
readme = "README.md"
license = {file = "LICENSE"}
Expand All @@ -11,6 +11,7 @@ requires-python = ">=3.9"
dependencies = [
"jkit>=3.0.0a16",
"prefect<3.0.0",
"psycopg[binary]>=3.2.0",
"sshared[config,mongo,postgres]>=0.11.0",
]

Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ pendulum==2.1.2 ; python_full_version < '3.12'
pendulum==3.0.0 ; python_full_version >= '3.12'
prefect==2.20.9
psycopg==3.2.3
psycopg-binary==3.2.3 ; implementation_name != 'pypy'
pyasn1==0.6.1
pyasn1-modules==0.4.1
pycparser==2.22 ; platform_python_implementation != 'PyPy'
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ pendulum==2.1.2 ; python_full_version < '3.12'
pendulum==3.0.0 ; python_full_version >= '3.12'
prefect==2.20.9
psycopg==3.2.3
psycopg-binary==3.2.3 ; implementation_name != 'pypy'
pyasn1==0.6.1
pyasn1-modules==0.4.1
pycparser==2.22 ; platform_python_implementation != 'PyPy'
Expand Down
70 changes: 69 additions & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 89438b4

Please sign in to comment.