Skip to content

Commit b61e330

Browse files
committed
bump greenlet, numpy, added support for 3.8 and 3.12 both
1 parent dcef93c commit b61e330

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/python-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-22.04
3535
strategy:
3636
matrix:
37-
python: ['3.9', '3.10', '3.11', '3.12']
37+
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
3838

3939
steps:
4040
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ license = "Apache License 2.0"
2626
classifiers = [
2727
"License :: OSI Approved :: Apache Software License",
2828
"Operating System :: OS Independent",
29+
"Programming Language :: Python :: 3.8",
2930
"Programming Language :: Python :: 3.9",
3031
"Programming Language :: Python :: 3.10",
3132
"Programming Language :: Python :: 3.11",
@@ -46,7 +47,7 @@ include = [
4647
]
4748

4849
[tool.poetry.dependencies]
49-
python = "^3.9"
50+
python = "^3.8"
5051
mmhash3 = ">=3.0.0,<4.0.0"
5152
requests = ">=2.20.0,<3.0.0"
5253
click = ">=7.1.1,<9.0.0"
@@ -70,8 +71,9 @@ adlfs = { version = ">=2023.1.0,<2024.1.0", optional = true }
7071
gcsfs = { version = ">=2023.1.0,<2024.1.0", optional = true }
7172
psycopg2-binary = { version = ">=2.9.6", optional = true }
7273
sqlalchemy = { version = "^2.0.18", optional = true }
73-
numpy = "1.26.3"
74-
greenlet = "3.0.3"
74+
numpy = { version = "^1.26.3", python = "3.12" }
75+
greenlet = {version = "^3.0.3", python = "3.12" }
76+
7577

7678
[tool.poetry.dev-dependencies]
7779
pytest = "7.4.4"

0 commit comments

Comments
 (0)