Skip to content

Commit 21b04e9

Browse files
committed
Update to PPT 2.1.0
1 parent c0ba0f2 commit 21b04e9

File tree

12 files changed

+29
-15
lines changed

12 files changed

+29
-15
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: v2.0.7
2+
_commit: v2.1.0
33
_src_path: gh:lincc-frameworks/python-project-template
44
author_email: [email protected]
55
author_name: LINCC Frameworks

.github/ISSUE_TEMPLATE/1-bug_report.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,13 @@ assignees: ''
99
**Bug report**
1010

1111

12+
**Environment Information**
13+
14+
1215
**Before submitting**
1316
Please check the following:
1417

15-
- [ ] 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.
18+
- [ ] 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.
19+
- [ ] I have included information about my environment, including the version of this package (e.g. `nested_pandas.__version__`)
1620
- [ ] 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.
1721
- [ ] If I have a solution in mind, I have provided an explanation and/or pseudocode and/or task list.

.github/workflows/asv-main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ jobs:
3434
with:
3535
fetch-depth: 0
3636
- name: Install dependencies
37-
run: pip install "asv[virtualenv]==${{env.ASV_VERSION}}"
37+
run: |
38+
pip install asv==${{env.ASV_VERSION}}
39+
pip install virtualenv==20.30 # Temporary fix to airspeed-velocity/asv#1484
3840
- name: Configure git
3941
run: |
4042
git config user.name "github-actions[bot]"

.github/workflows/asv-nightly.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
with:
3131
fetch-depth: 0
3232
- name: Install dependencies
33-
run: pip install "asv[virtualenv]==${{env.ASV_VERSION}}"
33+
run: |
34+
pip install asv==${{env.ASV_VERSION}}
35+
pip install virtualenv==20.30 # Temporary fix to airspeed-velocity/asv#1484
3436
- name: Configure git
3537
run: |
3638
git config user.name "github-actions[bot]"

.github/workflows/asv-pr.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939
run: |
4040
echo "Workflow Run ID: ${{github.run_id}}"
4141
- name: Install dependencies
42-
run: pip install "asv[virtualenv]==${{env.ASV_VERSION}}" lf-asv-formatter
42+
run: |
43+
pip install asv==${{env.ASV_VERSION}} lf-asv-formatter
44+
pip install virtualenv==20.30 # Temporary fix to airspeed-velocity/asv#1484
4345
- name: Make artifacts directory
4446
run: mkdir -p ${{env.ARTIFACTS_DIR}}
4547
- name: Save pull request number

.github/workflows/testing-and-coverage.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@ jobs:
5151
python -m pip install --upgrade uv
5252
uv venv venv
5353
source venv/bin/activate
54-
uv pip compile --resolution=lowest -o requirements_lowest.txt pyproject.toml
54+
if [ -f requirements.txt ]; then
55+
uv pip compile --resolution=lowest pyproject.toml requirements.txt -o requirements_lowest.txt
56+
else
57+
uv pip compile --resolution=lowest pyproject.toml -o requirements_lowest.txt
58+
fi
5559
uv pip install --constraint=requirements_lowest.txt -e .[dev]
5660
- name: Run unit tests with pytest
5761
run: |

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ repos:
3434
args: ['--maxkb=500']
3535
# Verify that pyproject.toml is well formed
3636
- repo: https://github.com/abravalheri/validate-pyproject
37-
rev: v0.12.1
37+
rev: v0.24.1
3838
hooks:
3939
- id: validate-pyproject
4040
name: Validate pyproject.toml

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 LINCC Frameworks
3+
Copyright (c) 2025 LINCC Frameworks
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
1616

1717
project = "nested-pandas"
18-
copyright = "2024, LINCC Frameworks"
18+
copyright = "2025, LINCC Frameworks"
1919
author = "LINCC Frameworks"
2020
release = version("nested-pandas")
2121
# for example take major/minor

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

22
[project]
33
name = "nested-pandas"
4-
license = {file = "LICENSE"}
4+
license = "MIT"
5+
license-files = ["LICENSE"]
56
description = "An extension of pandas for efficient representation of nested associated datasets."
67
readme = "README.md"
78
authors = [
89
{ name = "LINCC Frameworks", email = "[email protected]" }
910
]
1011
classifiers = [
1112
"Development Status :: 4 - Beta",
12-
"License :: OSI Approved :: MIT License",
1313
"Intended Audience :: Developers",
1414
"Intended Audience :: Science/Research",
1515
"Operating System :: OS Independent",
@@ -37,6 +37,7 @@ dependencies = [
3737
[project.optional-dependencies]
3838
dev = [
3939
"asv==0.6.4", # Used to compute performance benchmarks
40+
"virtualenv==20.30", # Temporary fix to airspeed-velocity/asv#1484
4041
"jupyter", # Clears output from Jupyter notebooks
4142
"mypy", # Used for static type checking of files
4243
"pre-commit", # Used to run checks before finalizing a git commit

0 commit comments

Comments
 (0)