Skip to content

Commit 27fbef2

Browse files
committed
Increment version from 0.11.3 to 0.12.0rc0
1 parent 0ad586b commit 27fbef2

File tree

8 files changed

+638
-572
lines changed

8 files changed

+638
-572
lines changed

.github/workflows/publish.yml

+32
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,37 @@ jobs:
4343
name: dist
4444
path: dist/
4545

46+
tests:
47+
runs-on: ubuntu-latest
48+
strategy:
49+
fail-fast: false
50+
matrix:
51+
python-version:
52+
- "3.10"
53+
- "3.12"
54+
steps:
55+
- uses: actions/checkout@v4
56+
- name: Install Poetry
57+
run: pipx install poetry
58+
- name: Set up Python ${{ matrix.python-version }}
59+
uses: actions/setup-python@v5
60+
with:
61+
python-version: "${{ matrix.python-version }}"
62+
cache: poetry
63+
- name: Install dependencies
64+
run: poetry install -E tests
65+
- name: Run tests
66+
id: test
67+
run: poetry run pytest tests
68+
- name: Upload generated files
69+
if: failure() && steps.test.outcome == 'failure' && matrix.python-version == '3.12'
70+
uses: actions/upload-artifact@v4
71+
with:
72+
name: test-generated-files-${{ github.event_name }}
73+
path: tests/test_question_templates/question_generated_outputs/
74+
if-no-files-found: ignore
75+
retention-days: 5
76+
4677
build-docs:
4778
name: Build Docs
4879
runs-on: ubuntu-latest
@@ -151,6 +182,7 @@ jobs:
151182
if: github.event_name == 'release' # only publish to PyPI on releases
152183
# Ensure tests have passed and problem banks can be built
153184
needs:
185+
- tests
154186
- test-dists
155187
- test-banks
156188
- build-docs

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
- name: Create GitHub Release
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.API_TOKEN_GITHUB }}
20-
run: gh release create '${{ github.ref_name }}' --repo '${{ github.repository }}' --generate-notes
20+
run: gh release create '${{ github.ref_name }}' --repo '${{ github.repository }}' --generate-notes --latest=false

.github/workflows/tests.yml

-108
This file was deleted.

bump.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ curl --silent https://raw.githubusercontent.com/PrairieLearn/PrairieLearn/master
1919
sed -i "s/import prairielearn as pl/from . import prairielearn as pl/g" src/problem_bank_scripts/_vendored/python_helper_sympy.py
2020

2121
# commit the changes
22-
git add src/problem_bank_scripts/__init__.py tests/test_problem_bank_scripts.py pyproject.toml src/problem_bank_scripts/_vendored/python_helper_sympy.py
22+
git add pyproject.toml src/problem_bank_scripts/_vendored/python_helper_sympy.py
2323
git commit -m "Increment version from $FROM to $TO"
2424

2525
# create a tag

docs/source/question_creator.rst

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ Getting started
1212

1313
Install the package via pip:
1414

15+
.. code-block:: shell
16+
17+
pip install "problem_bank_scripts[tui]>=0.12.0rc0"
18+
19+
Or, install the latest development version from the repository:
20+
1521
.. code-block:: shell
1622
1723
pip install "problem_bank_scripts[tui] @ git+https://github.com/open-resources/problem_bank_scripts"

0 commit comments

Comments
 (0)