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
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
environment: production
steps:
- name: Check out the code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v7
with:
python-version: '3.13'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v7
with:
python-version: '3.13'

Expand All @@ -41,7 +41,7 @@ jobs:
pytest -v --cov ./chartly/tests/

- name: Build and upload to Test PyPI
if: >
if: >-
${{ vars.STAGE_TO_PYPI == 'yes'
&& contains(env.BRANCH, 'staging')
&& env.EVENT == 'merge_group' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
echo "馃攷 The branch is ${{ github.ref_name }} in ${{ github.repository }}."

- name: Check out repository code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v7
with:
python-version: '3.13'
cache: 'pip'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
echo "馃帀 A ${{ github.event_name }} triggered a ${{ runner.os }} job."
echo "馃攷 The branch is ${{ github.ref_name }} in ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Guard the main branch
if: ${{ github.event_name == 'pull_request' && github.head_ref != 'staging' }}
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/github/super-linter
# https://github.com/super-linter/super-linter
---
name: Lint Codebase

Expand All @@ -19,14 +19,14 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0

- name: Lint Code Base
uses: github/super-linter@v5
uses: super-linter/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: main
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ scipy==1.17.1
seaborn==0.13.2
sphinx==7.3.7
sphinx-autoapi==3.1.2
setuptools==82.0.1
setuptools==84.0.0
twine==6.2.0
2 changes: 1 addition & 1 deletion requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ scipy==1.17.1
seaborn==0.13.2
sphinx==7.3.7
sphinx-autoapi==3.1.2
setuptools==82.0.1
setuptools==84.0.0
twine==6.2.0
2 changes: 1 addition & 1 deletion requirements/staging.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ scipy==1.17.1
seaborn==0.13.2
sphinx==7.3.7
sphinx-autoapi==3.1.2
setuptools==82.0.1
setuptools==84.0.0
twine==6.2.0
2 changes: 1 addition & 1 deletion requirements/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ scipy==1.17.1
seaborn==0.13.2
sphinx==7.3.7
sphinx-autoapi==3.1.2
setuptools==82.0.1
setuptools==84.0.0
twine==6.2.0