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
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: v2.0.7
_commit: v2.1.0
_src_path: gh:lincc-frameworks/python-project-template
author_email: malanchev@cmu.edu
author_name: Konstantin Malanchev
Expand Down
6 changes: 5 additions & 1 deletion .github/ISSUE_TEMPLATE/1-bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@ assignees: ''
**Bug report**


**Environment Information**


**Before submitting**
Please check the following:

- [ ] I have described the situation in which the bug arose, including what code was executed, information about my environment, and any applicable data others will need to reproduce the problem.
- [ ] I have described the situation in which the bug arose, including what code was executed, and any applicable data others will need to reproduce the problem.
- [ ] I have included information about my environment, including the version of this package (e.g. `uncle_val.__version__`)
- [ ] I have included available evidence of the unexpected behavior (including error messages, screenshots, and/or plots) as well as a description of what I expected instead.
- [ ] If I have a solution in mind, I have provided an explanation and/or pseudocode and/or task list.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repos:
args: ['--maxkb=500']
# Verify that pyproject.toml is well formed
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.12.1
rev: v0.24.1
hooks:
- id: validate-pyproject
name: Validate pyproject.toml
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Konstantin Malanchev
Copyright (c) 2025 Konstantin Malanchev

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "uncle-val"
copyright = "2024, Konstantin Malanchev"
copyright = "2025, Konstantin Malanchev"
author = "Konstantin Malanchev"
release = version("uncle-val")
# for example take major/minor
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

[project]
name = "uncle-val"
license = {file = "LICENSE"}
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
authors = [
{ name = "Konstantin Malanchev", email = "malanchev@cmu.edu" }
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
Expand Down
3 changes: 3 additions & 0 deletions src/uncle_val/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from ._version import __version__

__all__ = ["__version__"]
6 changes: 6 additions & 0 deletions tests/uncle_val/test_packaging.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import uncle_val


def test_version():
"""Check to see that we can get the package version"""
assert uncle_val.__version__ is not None