Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support python 3.12 #426

Merged
merged 2 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
python-version: '3.10'

- name: Install kerberos headers
run: sudo apt install libkrb5-dev
run: |
sudo apt-get update
sudo apt install libkrb5-dev

- name: Install tox
run: |
Expand Down Expand Up @@ -69,7 +71,7 @@ jobs:
- /tmp/keytabs:/tmp/keytabs
strategy:
matrix:
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@v3
Expand Down Expand Up @@ -109,7 +111,9 @@ jobs:
python-version: '3.10'

- name: Install kerberos headers
run: sudo apt install libkrb5-dev
run: |
sudo apt-get update
sudo apt install libkrb5-dev

- name: Create wheel
run: |
Expand Down Expand Up @@ -140,7 +144,9 @@ jobs:
python-version: '3.10'

- name: Install kerberos headers
run: sudo apt install libkrb5-dev
run: |
sudo apt-get update
sudo apt install libkrb5-dev

- name: Install library
run: |
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [
{ include = "**/*.py", from = "src" }
Expand Down Expand Up @@ -87,7 +88,7 @@ linux-kerberos = [
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38,py39,py310,py311
envlist = py38,py39,py310,py311,py312
isolated_build = True
requires =
tox-gh-actions==2.9.1
Expand All @@ -98,6 +99,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
whitelist_externals = poetry
Expand Down
Loading