Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4.0.5
uses: actions/deploy-pages@v5.0.0
with:
artifact_name: site

Expand All @@ -42,7 +42,7 @@ jobs:
id-token: write
steps:
- name: Download build artifacts
uses: actions/download-artifact@v8.0.0
uses: actions/download-artifact@v8.0.1
with:
name: dist
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# System
.DS_Store

# Python development files
# Development files
.artifacts
.cache
.coverage
Expand All @@ -14,7 +14,7 @@ coverage.xml
htmlcov
megalinter-reports

# Python-generated files
# Generated files
__pycache__/
*.py[oc]
build/
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ repos:

# actionlint
- repo: https://github.com/rhysd/actionlint
rev: v1.7.11
rev: v1.7.12
hooks:
- id: actionlint

Expand All @@ -48,13 +48,13 @@ repos:

# codespell
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
rev: v2.4.2
hooks:
- id: codespell

# ruff
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.4
rev: v0.15.9
hooks:
- id: ruff-check
- id: ruff-format
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Nox configuration file for testing against multiple python versions.

@author "Daniel Mizsak" <info@pythonvilag.hu>
@author "Daniel Mizsak" <daniel@mizsak.com>
"""

import nox
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,20 @@
# Project Metadata
[project]
name = "python-package-template-pypi" # Name has to be unique on pypi.
version = "0.3.1"
version = "0.3.2"
description = "Python package template configuration."
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Daniel Mizsak", email = "info@pythonvilag.hu" }]
authors = [{ name = "Daniel Mizsak", email = "daniel@mizsak.com" }]
keywords = ["python", "template", "package", "github", "pypi"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.12"
dependencies = ["numpy==2.4.2"]
dependencies = ["numpy==2.4.4"]

[project.urls]
Repository = "https://github.com/daniel-mizsak/python-package-template/"
Expand Down
2 changes: 1 addition & 1 deletion src/python_package_template/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Python package template configuration.

@author "Daniel Mizsak" <info@pythonvilag.hu>
@author "Daniel Mizsak" <daniel@mizsak.com>
"""

from python_package_template.main import add_five, subtract_three
Expand Down
2 changes: 1 addition & 1 deletion src/python_package_template/main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Main module of the package.

@author "Daniel Mizsak" <info@pythonvilag.hu>
@author "Daniel Mizsak" <daniel@mizsak.com>
"""

import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion tests/main_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Tests for the main module.

@author "Daniel Mizsak" <info@pythonvilag.hu>
@author "Daniel Mizsak" <daniel@mizsak.com>
"""

from python_package_template.main import add_five, subtract_three
Expand Down
451 changes: 226 additions & 225 deletions uv.lock

Large diffs are not rendered by default.