Skip to content

Commit

Permalink
Add support for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw committed Oct 20, 2023
1 parent 81af044 commit a238b07
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
14 changes: 8 additions & 6 deletions .github/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,22 @@ changelog:
exclude:
labels:
- ignore for release
- ci
categories:
- title: New features
- title: New features
labels:
- enhancement
- title: Bug fixes
- title: 🐛 Bug fixes
labels:
- bug
- title: Documentation
- title: 📝 Documentation
labels:
- documentation
- title: Dependencies
- title: ⬆️ Dependencies
labels:
- dependencies
- title: Other changes
- title: 🚀 CI
labels:
- ci
- title: 🤷🏻 Other changes
labels:
- '*'
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
- { PYTHON_VERSION: 'python=3.9', POLARS_VERSION: 'polars=0.19' }
- { PYTHON_VERSION: 'python=3.10', POLARS_VERSION: '' }
- { PYTHON_VERSION: 'python=3.11', POLARS_VERSION: '' }
- { PYTHON_VERSION: 'python=3.12', POLARS_VERSION: '' }
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.3.0
Expand Down Expand Up @@ -61,10 +62,10 @@ jobs:
uses: mamba-org/setup-micromamba@54d4d5980e1a4aa7cdc8b050cf2d19b7e262ce18
- name: Add micromamba to GITHUB_PATH
run: echo "${HOME}/micromamba-bin" >> "$GITHUB_PATH"
- name: Install Python 3.11
- name: Install Python 3.12
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.12'
- name: Run pre-commit checks
uses: pre-commit/action@v3.0.0

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"polars >=0.14.24,<0.20",
Expand Down

0 comments on commit a238b07

Please sign in to comment.