Skip to content

Commit

Permalink
Add Python 3.12 to CI (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtth committed Oct 12, 2023
1 parent eda584a commit e07a8e6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Check out
uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Check out
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion hdfs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import logging as lg


__version__ = '2.7.2'
__version__ = '2.7.3'
__license__ = 'MIT'


Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit e07a8e6

Please sign in to comment.