Skip to content
Open
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
13 changes: 1 addition & 12 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,18 +82,7 @@ jobs:
- name: Verify pytest plugins
run: python -m pytest --version
- name: Install -us package from PyPI
run: |
if [[ "${{ matrix.python-version }}" == "3.13" ]]; then
# For Python 3.13, install newer tables first and ignore conflicts
pip install "tables>=3.10.1"
pip install policyengine-us --no-deps
# Install remaining dependencies manually
pip install click==8.1.3 pathlib pytest-dependency synthimpute tabulate
pip install policyengine-us-data --no-deps
else
python -m pip install policyengine-us
fi
shell: bash
run: python -m pip install policyengine-us
- name: Run smoke tests only
run: python -m pytest -m smoke --reruns 2 --reruns-delay 5 -v -s
env:
Expand Down
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
removed:
- Stale smoke test workaround with unused dependencies (synthimpute, etc.).
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@
python_requires=">=3.10",
extras_require={
"dev": dev_requirements,
# Note: For Python 3.13, policyengine-us requires special installation
# due to tables==3.9.2 not having Python 3.13 wheels. See CI workflow for workaround.
},
include_package_data=True, # Will read MANIFEST.in
install_requires=general_requirements,
Expand Down