Skip to content

Commit

Permalink
Python 3.12 Support (#232)
Browse files Browse the repository at this point in the history
* Add in Python 3.12 to testing

* Update pyproject toml for newer ruff

* Require setuptools for py3.12

* downgrade setuptools for py37
  • Loading branch information
shyamd authored Mar 3, 2024
1 parent 5973b7d commit 3a3c520
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
max-parallel: 6
matrix:
os: [ubuntu-latest]
python-version: [3.7, 3.8, 3.9, '3.10',3.11]
python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
pandoc-version: [2.9.2, 2.14.0.3]
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ exclude = [
'__pycache__',
'__init__.py',
]

[tool.ruff.lint]
ignore = [
'E741',
'W605',
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"pypandoc>=1.5",
"requests>=2.8.1",
"validators>=0.19.0",
"setuptools>=68.0.0"
],
tests_require=["pytest"],
packages=find_packages("src"),
Expand Down

0 comments on commit 3a3c520

Please sign in to comment.