Skip to content

Commit

Permalink
[FSTORE-841] Relax confluent-kafka dependency to support python 3.10 (l…
Browse files Browse the repository at this point in the history
…ogicalclocks#996)

* [FSTORE-841] Relax confluent-kafka dependency to support python 3.10

* Run unit tests on 3.10 as well
  • Loading branch information
SirOibaf authored May 2, 2023
1 parent af83b99 commit 1955dba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- name: Set Timezone
Expand Down
7 changes: 4 additions & 3 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def read(fname):
setup(
name="hsfs",
version=__version__,
python_requires=">=3.7,<3.10",
python_requires=">=3.7,<3.11",
install_requires=[
"pyhumps==1.6.1",
"requests",
Expand Down Expand Up @@ -56,13 +56,13 @@ def read(fname):
"hive": [
"pyhopshive[thrift]",
"pyarrow",
"confluent-kafka==1.8.2",
"confluent-kafka<=1.9.0",
"fastavro>=1.4.11,<=1.7.3",
],
"python": [
"pyhopshive[thrift]",
"pyarrow",
"confluent-kafka==1.8.2",
"confluent-kafka<=1.9.0",
"fastavro>=1.4.11,<=1.7.3",
"tqdm",
],
Expand All @@ -84,6 +84,7 @@ def read(fname):
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
],
)

0 comments on commit 1955dba

Please sign in to comment.