From e07a8e60e7cb2912b76a07f0caf6f485c6131dfa Mon Sep 17 00:00:00 2001 From: Matthieu Monsch <1216372+mtth@users.noreply.github.com> Date: Thu, 12 Oct 2023 16:52:22 -0700 Subject: [PATCH] Add Python 3.12 to CI (#205) --- .github/workflows/ci.yml | 1 + .github/workflows/pr.yml | 1 + hdfs/__init__.py | 2 +- setup.py | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a32911..8a7ee65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,7 @@ jobs: - '3.9' - '3.10' - '3.11' + - '3.12' steps: - name: Check out uses: actions/checkout@v3 diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index b50fcd2..74ec797 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -20,6 +20,7 @@ jobs: - '3.9' - '3.10' - '3.11' + - '3.12' steps: - name: Check out uses: actions/checkout@v3 diff --git a/hdfs/__init__.py b/hdfs/__init__.py index 62f2c3c..b7e9454 100644 --- a/hdfs/__init__.py +++ b/hdfs/__init__.py @@ -9,7 +9,7 @@ import logging as lg -__version__ = '2.7.2' +__version__ = '2.7.3' __license__ = 'MIT' diff --git a/setup.py b/setup.py index ffc29bf..b722f22 100644 --- a/setup.py +++ b/setup.py @@ -49,6 +49,7 @@ def _get_long_description(): 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], install_requires=[ 'docopt',