Skip to content
This repository was archived by the owner on Nov 3, 2025. It is now read-only.
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
8 changes: 4 additions & 4 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- main

env:
MAIN_PYTHON_VERSION: '3.12'
MAIN_PYTHON_VERSION: '3.13'
PACKAGE_NAME: 'pyansys-tools-versioning'
PACKAGE_NAMESPACE: 'ansys.tools.versioning'
DOCUMENTATION_CNAME: 'versioning.tools.docs.pyansys.com'
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']

steps:
- name: Build wheelhouse and perform smoke test
Expand All @@ -74,7 +74,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']

steps:
- name: Build wheelhouse and perform smoke test
Expand All @@ -91,7 +91,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- name: Run pytest
uses: ansys/actions/tests-pytest@v8
Expand Down
14 changes: 14 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,20 @@
# type, unless multiple values are being returned"
}

# Ignoring numpydoc validation on built-in methods from Python
# or other libraries due to inheritance
numpydoc_validation_exclude = {
"denominator",
"imag",
"numerator",
"real",
"__cause__",
"__context__",
"__abs__",
"__float__",
"__int__",
}


# static path
html_static_path = ["_static"]
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
description = Default tox environments list
envlist =
style,{py310,py311,py312}{,-coverage},doc-html,doc-json
style,{py310,py311,py312,py313}{,-coverage},doc-html,doc-json
skip_missing_interpreters = true
isolated_build = true
isolated_build_env = build
Expand All @@ -12,6 +12,7 @@ basepython =
py310: python3.10
py311: python3.11
py312: python3.12
py313: python3.13
py: python3
{style,reformat,doc,build}: python3
setenv =
Expand Down
Loading