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 .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"

- name: Build package
run: uv build
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ jobs:
run: uv run every-python run v3.13.0 -- --version

- name: Test build with JIT
run: uv run every-python install main --jit --verbose
# Use commit that I know has JIT support with LLVM 20
run: uv run every-python install 42d014086098d3d70cacb4d8993f04cace120c12 --jit --verbose

- name: Verify JIT build works
run: uv run every-python run main --jit -- --version
# Use commit that I know has JIT support with LLVM 20
run: uv run every-python run 42d014086098d3d70cacb4d8993f04cace120c12 --jit -- --version
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"

- name: Install dependencies
run: uv sync
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"

- name: Install dependencies
run: uv sync --all-groups
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,6 @@ build/

# Pytest
.cache/
.pytest_cache/
.pytest_cache/

test_jit_api.py
2 changes: 1 addition & 1 deletion every_python/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""every-python - A utility for building any commit of CPython."""
"""every-python - A utility for building and running any commit of CPython."""

__version__ = "0.2.0"
Loading