Skip to content

Commit

Permalink
add python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
masonproffitt committed Oct 20, 2023
1 parent 0fd7be3 commit 28227d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=['tests']),
python_requires=('>=3.8, <3.12'),
python_requires=('>=3.8, <3.13'),
install_requires=[
'awkward>=2.0.9',
'dask[complete]',
'dask-awkward>=2023.8.1',
'func-adl>=3.1',
'func-adl>=3.2.7',
'numpy',
'qastle>=0.16.1',
'uproot>=5',
Expand Down

0 comments on commit 28227d9

Please sign in to comment.