Given how widespread PY310's usage has become, and how we're just a few months away from PY311 major release. This is a slightly late bumping but necessary to ensure smoother updates & maintenance for Frappe, ERPNext & other apps in the coming years. Almost all people who participated in the pool from the community as well as Frappe team voted (via active telegram groups) PY310 as their preferred minimum requirement for v14.
28 lines
633 B
YAML
28 lines
633 B
YAML
name: 'Documentation Check'
|
|
on:
|
|
pull_request:
|
|
types: [ opened, synchronize, reopened, edited ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
docs-required:
|
|
name: 'Documentation Required'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: 'Setup Environment'
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
|
|
- name: 'Clone repo'
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Validate Docs
|
|
env:
|
|
PR_NUMBER: ${{ github.event.number }}
|
|
run: |
|
|
pip install requests --quiet
|
|
python $GITHUB_WORKSPACE/.github/helper/documentation.py $PR_NUMBER
|