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/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]

steps:
- name: Checkout
uses: actions/checkout@master
with:
persist-credentials: false
- name: Setup TeX Live
uses: teatimeguest/setup-texlive-action@v3
uses: TeX-Live/setup-texlive-action@v3.4.2
with:
packages: >-
scheme-basic
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_jupyterbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
activate-environment: taxbrain-dev
environment-file: environment.yml
python-version: "3.12"
python-version: "3.13"
auto-activate-base: false

- name: Build # Build Jupyter Book
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_jupyterbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
activate-environment: taxbrain-dev
environment-file: environment.yml
python-version: "3.12"
python-version: "3.13"
auto-activate-base: false

- name: Build # Build Jupyter Book
Expand Down
7 changes: 7 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Tax-Brain Release History

## 2025-12-19 Release 2.8.0

Last Merged Pull Request: [#209](https://github.com/PSLmodels/Tax-Brain/pull/209)

* Testing on Python 3.13 (drop Python 3.10): [#209](https://github.com/PSLmodels/Tax-Brain/pull/209)
* Compatibility with Tax-Calculator > 6.0.0: [#206](https://github.com/PSLmodels/Tax-Brain/pull/205)

## 2024-09-23 Release 2.7.2

Last Merged Pull Request: [#205](https://github.com/PSLmodels/Tax-Brain/pull/205)
Expand Down
12 changes: 6 additions & 6 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: taxbrain-dev
channels:
- conda-forge
dependencies:
- python>=3.6.5
- taxcalc>=6.0.0
- behresp>=0.11.0
- pandas>=0.23
- numpy>=1.14
- paramtools>=0.18.1
- "python>=3.11, <3.14"
- "taxcalc>=6.0.0"
- "behresp>=0.11.0"
- "numpy>=1.26"
- "pandas>=2.2"
- "paramtools>=0.20.0"
- pytest
- dask
- bokeh
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

with open("README.md", "r") as f:
long_description = f.read()
version = "2.7.2"
version = "2.8.0"
setuptools.setup(
name="taxbrain",
version=version,
Expand All @@ -19,9 +19,9 @@
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"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
4 changes: 3 additions & 1 deletion taxbrain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@
from taxbrain.report import *
from taxbrain.report_utils import *

__version__ = "0.0.0"
__version__ = "2.8.0"
__min_python3_version__ = 11
__max_python3_version__ = 13
Loading