Skip to content

Commit 2c38fa0

Browse files
authored
Merge pull request #248 from yassun7010/fix_version
feat: support numpy version.
2 parents 6f7290e + 573d302 commit 2c38fa0

24 files changed

+3449
-3294
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.9.18
1+
3.10.15

poetry.lock

Lines changed: 1065 additions & 1028 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ classifiers = [
1212
"Intended Audience :: Developers",
1313
"License :: OSI Approved :: MIT License",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.8",
1615
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
@@ -81,7 +80,7 @@ optional = true
8180
[tool.poetry.group.dev.dependencies]
8281
pytest = ">=7.4.4,<9.0.0"
8382
taskipy = "^1.12.0"
84-
pyright = "^1.1.345"
83+
pyright = "1.1.345"
8584
ruff = ">=0.3.5,<0.7.0"
8685
pydantic = "^2.5.3"
8786
pytest-cov = ">=4.1,<6.0"

turu-bigquery/poetry.lock

Lines changed: 610 additions & 599 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turu-bigquery/pyproject.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ classifiers = [
1212
"Intended Audience :: Developers",
1313
"License :: OSI Approved :: MIT License",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.8",
1615
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
@@ -32,23 +31,23 @@ bigquery-storage = ["google-cloud-bigquery-storage"]
3231

3332
[tool.poetry.group.dev.dependencies]
3433
taskipy = "^1.12.2"
35-
pyright = "^1.1.339"
34+
pyright = "1.1.345"
3635
ruff = "^0.3.5"
3736
pytest = "^7.4.3"
3837
pydantic = "^2.5.2"
3938
pytest-xdist = "^3.5.0"
4039
pytest-cov = "^4.1.0"
4140
google-cloud-bigquery-storage = "^2.24.0"
4241
numpy = [
43-
{ version = ">=1.26", python = ">=3.9" },
44-
{ version = "<1.25", python = "=3.8" },
42+
{ version = "^1.0", python = "<3.10" },
43+
{ version = "^2.0", python = ">=3.10" },
4544
]
4645

4746
[tool.poetry.dependencies]
48-
python = "^3.8"
47+
python = "^3.9"
4948
typing-extensions = "^4.8.0"
5049
google-cloud-bigquery = "^3.14.1"
51-
pyarrow = "^14.0.2"
50+
pyarrow = "^18.0.0"
5251

5352
[tool.poetry.dependencies.turu-core]
5453
# INFO: poetry-dynamic-versioning to replace this.

turu-core/poetry.lock

Lines changed: 214 additions & 236 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turu-core/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ classifiers = [
1212
"Intended Audience :: Developers",
1313
"License :: OSI Approved :: MIT License",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.8",
1615
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
@@ -38,13 +37,13 @@ ci = "task format && task lint && task typecheck && task test"
3837
pydantic = ["pydantic"]
3938

4039
[tool.poetry.dependencies]
41-
python = "^3.8"
40+
python = "^3.9"
4241
typing-extensions = "^4.8.0"
4342
pydantic = { version = "^2", optional = true }
4443

4544
[tool.poetry.group.dev.dependencies]
4645
taskipy = "^1.12.2"
47-
pyright = "^1.1.339"
46+
pyright = "1.1.345"
4847
ruff = "^0.3.5"
4948
pytest = "^7.4.3"
5049
pytest-cov = "^4.1.0"

turu-mysql/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '3.8'
1+
version: '3.9'
22

33
services:
44
mysql:

turu-mysql/poetry.lock

Lines changed: 325 additions & 307 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turu-mysql/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ classifiers = [
1212
"Intended Audience :: Developers",
1313
"License :: OSI Approved :: MIT License",
1414
"Programming Language :: Python :: 3",
15-
"Programming Language :: Python :: 3.8",
1615
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
@@ -29,15 +28,15 @@ classifiers = [
2928

3029
[tool.poetry.group.dev.dependencies]
3130
taskipy = "^1.12.2"
32-
pyright = "^1.1.339"
31+
pyright = "1.1.345"
3332
ruff = "^0.3.5"
3433
pytest = "^7.4.3"
3534
pydantic = "^2.5.2"
3635
pytest-cov = "^4.1.0"
3736
pytest-asyncio = "^0.23.2"
3837

3938
[tool.poetry.dependencies]
40-
python = "^3.8"
39+
python = "^3.9"
4140
typing-extensions = "^4.8.0"
4241
aiomysql = "^0.2.0"
4342
cryptography = ">=41.0.7,<43.0.0"

0 commit comments

Comments
 (0)