Skip to content
Draft
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
1 change: 1 addition & 0 deletions .claude
Submodule .claude added at eec0a0
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.13
python-version: 3.14
- name: Build changelog
run: pip install yaml-changelog==0.3.0 && make changelog
- name: Preview changelog update
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.13
python-version: 3.14
- name: Install package
run: make install
- name: Run tests
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.13
python-version: 3.14
- name: Build changelog
run: pip install yaml-changelog==0.3.0 && make changelog
- name: Preview changelog update
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.13
python-version: 3.14
- name: Install package
run: make install
- name: Run tests
Expand All @@ -82,7 +82,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.13
python-version: 3.14
- name: Publish a git tag
run: ".github/publish-git-tag.sh || true"
- name: Install package
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.12
python-version: 3.14
- name: Install Wheel and Pytest
run: pip3 install wheel setuptools pytest==5.4.3
- name: Install package
Expand Down
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.14
6 changes: 6 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- bump: minor
changes:
added:
- Support for Python 3.14
removed:
- Support for Python 3.10 (following SPEC 0 policy)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Information Analysis",
],
description="Microsimulation model for Canada's tax-benefit system.",
Expand All @@ -63,7 +63,7 @@
extras_require={
"dev": dev_requirements,
},
python_requires=">=3.10",
python_requires=">=3.11,<3.15",
install_requires=general_requirements,
packages=find_packages(),
include_package_data=True,
Expand Down
Loading