Skip to content

Commit

Permalink
pin py312 and update pre-commit (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
CagtayFabry authored Jul 5, 2024
1 parent 5a5fa65 commit 709217f
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 62 deletions.
10 changes: 9 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
args: [--markdown-linebreak-ext=md]
- id: end-of-file-fixer
- id: check-yaml

# ----- Python formatting -----
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.5.0
Expand All @@ -28,3 +28,11 @@ repos:
- --fix
# Run the formatter.
- id: ruff-format
- repo: https://github.com/tox-dev/pyproject-fmt
rev: 2.1.3
hooks:
- id: pyproject-fmt
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.18
hooks:
- id: validate-pyproject
126 changes: 65 additions & 61 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,91 +1,95 @@
[project]
name = "weldx_widgets"
dynamic = [ # see: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html#dynamic-metadata
"version", # version gets derived from git by setuptools_scm.
]
authors = [
{name="Martin K. Scherer", email="martin.scherer@bam.de"},
{name="Cagtay Fabry", email="cagtay.fabry@bam.de"}
[build-system]
# Tool configs
requires = [
"babel",
"setuptools>=45",
"setuptools-scm[toml]>=6",
"wheel",
]
description="Python based widgets for the weldx core package"

[project]
name = "weldx-widgets"
description = "Python based widgets for the weldx core package"
readme = "README.md"
license = {file = "LICENSE", name="BSD License"}
keywords = [
"weldx",
"ipywidgets",
"widgets",
"ipywidgets",
"weldx",
"widgets",
]
license = { file = "LICENSE", name = "BSD License" }
authors = [
{ name = "Martin K. Scherer", email = "martin.scherer@bam.de" },
{ name = "Cagtay Fabry", email = "cagtay.fabry@bam.de" },
]
# Dependencies
requires-python = ">=3.9,<3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Physics",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Physics",
]

# Dependencies
requires-python = ">=3.9"
dynamic = [
# see: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html#dynamic-metadata
"version", # version gets derived from git by setuptools_scm.
]
dependencies = [
"weldx >=0.6",
"ipywidgets",
"k3d >=2.12",
"ipympl",
"bidict",
"ipyfilechooser",
"tqdm",
"matplotlib<3.9",
"numpy<2",
"bidict",
"ipyfilechooser",
"ipympl",
"ipywidgets",
"k3d>=2.12",
"matplotlib<3.9",
"numpy<2",
"tqdm",
"weldx>=0.6",
]
[project.optional-dependencies]
test = [
"pytest-cov",
"pytest-xdist"
optional-dependencies.test = [
"pytest-cov",
"pytest-xdist",
]
urls.bug_tracker = "https://github.com/BAMweldx/weldx-widgets/issues"
urls.changelog = "https://github.com/BAMweldx/weldx-widgets/blob/master/CHANGELOG.md"
urls.documentation = "https://weldx.readthedocs.io"
urls.repository = "https://github.com/BAMweldx/weldx-widgets"

[project.urls]
documentation = "https://weldx.readthedocs.io"
repository = "https://github.com/BAMweldx/weldx-widgets"
bug_tracker = "https://github.com/BAMweldx/weldx-widgets/issues"
changelog = "https://github.com/BAMweldx/weldx-widgets/blob/master/CHANGELOG.md"

[build-system]
requires = ["setuptools>=45",
"wheel",
"setuptools_scm[toml]>=6.0",
"babel",
[tool.setuptools.packages.find]
where = [
".",
]

# Tool configs
[tool.setuptools_scm]
write_to = "weldx_widgets/_version.py"
write_to_template = '__version__ = "{version}"'

[tool.setuptools.packages.find]
where = ["."]

[tool.pytest.ini_options]
addopts = "--tb=short --color=yes -rsw --doctest-modules --cov=weldx_widgets"
testpaths = "weldx_widgets/tests"
filterwarnings = [
"ignore::DeprecationWarning:traittypes.*:",
"ignore:Passing method to :FutureWarning:xarray.*:",
"error::pint.UnitStrippedWarning",
"ignore::DeprecationWarning:traittypes.*:",
"ignore:Passing method to :FutureWarning:xarray.*:",
"error::pint.UnitStrippedWarning",
]

[tool.coverage.run]
source = ["weldx_widgets"]
source = [
"weldx_widgets",
]

[tool.coverage.report]
omit = [
"weldx_widgets/_version.py",
"weldx_widgets/tests/*",
"weldx_widgets/_version.py",
"weldx_widgets/tests/*",
]
exclude_lines = [
# Have to re-enable the standard pragma
"pragma: no cover",
# Have to re-enable the standard pragma
"pragma: no cover",
]

0 comments on commit 709217f

Please sign in to comment.