Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
deejay1 committed Nov 4, 2024
1 parent c83d4f1 commit 1e69871
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/automate-stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
days-before-issue-stale: 60
days-before-issue-close: 7
exempt-issue-labels: after-vacations,will-fix
exempt-pr-labels: dependencies
stale-issue-label: stale
stale-pr-message: >
This PR has been automatically marked as stale because it has not had
Expand All @@ -27,6 +26,6 @@ jobs:
and we'll re-open the PR so that you can continue the contribution!
days-before-pr-stale: 14
days-before-pr-close: 7
exempt-pr-labels: after-vacations,will-fix
exempt-pr-labels: after-vacations,will-fix, dependencies
stale-pr-label: stale
operations-per-run: 100
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.13
- uses: psf/black@stable
4 changes: 2 additions & 2 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.7]
python-version: [3.13]

steps:
# Publish mkdocs-techdocs-core to PyPI
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: 3.7
python-version: ${{ matrix.python-version }}
- name: Build Python distribution
working-directory: .
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11]
python-version: [3.9, "3.10", 3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Validate
uses: rinchsan/renovate-config-validator@v0.0.12
uses: rinchsan/renovate-config-validator@v0.2.0
with:
pattern: '*.json5'
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
author="TechDocs Core",
author_email="[email protected]",
license="Apache-2.0",
python_requires=">=3.7",
python_requires=">=3.9",
install_requires=required,
classifiers=[
"Development Status :: 3 - Alpha",
Expand All @@ -47,7 +47,11 @@
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
packages=find_packages(),
entry_points={"mkdocs.plugins": ["techdocs-core = src.core:TechDocsCore"]},
Expand Down

0 comments on commit 1e69871

Please sign in to comment.