Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
107d561
update dependencies
henilp105 Jan 19, 2025
a9b855c
fix: update to latest version
henilp105 Jan 19, 2025
1970f27
update dependencies
henilp105 Jan 19, 2025
b042101
update dependencies
henilp105 Jan 19, 2025
9779885
Update requirements.txt
henilp105 Jan 19, 2025
0dd59f0
Merge branch 'fortran-lang:main' into main
henilp105 Jan 19, 2025
7e37daf
Merge branch 'fortran-lang:main' into main
henilp105 Feb 17, 2025
9bf96dd
Merge branch 'fortran-lang:main' into main
henilp105 Feb 18, 2025
1126505
Merge branch 'fortran-lang:main' into main
henilp105 Feb 18, 2025
ffab09b
Merge branch 'fortran-lang:main' into main
henilp105 Feb 21, 2025
14e689d
Merge branch 'fortran-lang:main' into main
henilp105 Feb 24, 2025
af6ac36
Merge branch 'fortran-lang:main' into main
henilp105 Jun 9, 2025
d7a9a72
maintainance
henilp105 Jun 9, 2025
334c20f
Merge branch 'fortran-lang:main' into main
henilp105 Jun 10, 2025
22d94d9
maintainance
henilp105 Jun 10, 2025
7f9d8a1
Update requirements.txt
henilp105 Jun 10, 2025
fe0074b
Update preview_build.yml
henilp105 Jun 10, 2025
b68e2ec
Update build.yml
henilp105 Jun 10, 2025
0fa5040
Merge branch 'fortran-lang:main' into main
henilp105 Jun 10, 2025
7152a10
Merge branch 'fortran-lang:main' into main
henilp105 Sep 29, 2025
373ab95
Merge branch 'fortran-lang:main' into main
henilp105 Oct 11, 2025
5442350
Merge branch 'fortran-lang:main' into main
henilp105 Oct 13, 2025
06c0cb2
Update package versions in requirements.txt
henilp105 Oct 13, 2025
486ee70
Update Fortran setup action to version 1.8.0
henilp105 Oct 13, 2025
976c2e2
Upgrade GitHub Actions to latest versions
henilp105 Oct 13, 2025
bf8ac54
Update GitHub Actions to use latest versions
henilp105 Oct 13, 2025
d25e74b
Update GitHub Actions to use latest versions
henilp105 Oct 13, 2025
25419fa
Upgrade checkout action and modify echo command
henilp105 Oct 13, 2025
936e4e9
Update json_url to point to external data source
henilp105 Oct 13, 2025
09f47ac
Add styles for index_joinus class in custom.css
henilp105 Oct 13, 2025
b92bb01
Bump the pip-deps group with 5 updates
dependabot[bot] Oct 13, 2025
911ba7b
Remove .index_joinus styles from custom.css
henilp105 Oct 13, 2025
f798f15
Merge branch 'main' into dependabot/pip/pip-deps-1fe194a572
henilp105 Oct 13, 2025
9e85ac1
Implement early exit for missing 'pr/' directory
henilp105 Oct 13, 2025
9e7d481
Merge pull request #210 from henilp105/dependabot/pip/pip-deps-1fe194…
henilp105 Oct 13, 2025
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:

steps:
- name: Checkout page source
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.11"

- name: Setup Fortran compiler
uses: fortran-lang/setup-fortran@v1.7.0
uses: fortran-lang/setup-fortran@v1.8.0
id: setup-fortran
with:
compiler: gcc
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/closePR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,19 @@ jobs:

steps:
- name: Checkout gh-pages
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: gh-pages

- name: Iterate and Check PRs
id: pr_check
run: |
# Exit early if 'pr/' directory does not exist
if [ ! -d "pr" ]; then
echo "No 'pr/' directory found. Skipping PR check."
exit 0
fi

# Get the list of PR folders inside 'pr/' (e.g., pr/123, pr/456)
pr_folders=($(find pr -mindepth 1 -maxdepth 1 -type d -printf "%f\n"))
closed_pr=()
Expand All @@ -42,7 +48,7 @@ jobs:
done

# Store closed PRs in GITHUB_STATE for later use
echo "${closed_pr[*]}" >> "$GITHUB_STATE"
# echo "${closed_pr[*]}" >> "$GITHUB_STATE"

- name: Commit and push to gh-pages
uses: EndBug/add-and-commit@v9.1.4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fortran_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

steps:
- name: checkout source
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6

- name: Install python libraries
run: pip3 install --user -r requirements.txt
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/preview_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:

steps:
- name: Checkout pr/${{github.event.issue.number}}
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Fetch pr/${{github.event.issue.number}}
run: |
git fetch origin pull/${{github.event.issue.number}}/head:pr-${{github.event.issue.number}}
git checkout pr-${{github.event.issue.number}}

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.11"

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
git-config-name: Fortran

- name: Comment on pull request
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
issue-number: ${{github.event.issue.number}}
body: "This PR has been built with Sphinx and can be previewed at: https://fortran-lang.github.io/webpage/pr/${{github.event.issue.number}}"
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ sphinx_design==0.6.1
sphinx_copybutton==0.5.2
sphinx-jinja==2.0.2
jinja2==3.1.6
requests==2.32.3
black==25.1.0
pylint==3.3.7
pre-commit==4.2.0
sphinx-sitemap==2.6.0
requests==2.32.5
black==25.9.0
pylint==4.0.0
pre-commit==4.3.0
sphinx-sitemap==2.9.0
sphinx-favicon==1.0.1
2 changes: 1 addition & 1 deletion source/_static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ i.fa-rss:before {

i.fa-envelope-open-text:before {
color: #734f96;
}
}
2 changes: 1 addition & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
"navbar_align": "right",
"navbar_start": ["navbar-logo","theme-switcher.html"],
"switcher": {
"json_url": "_static/data.json", # shifted to custom local switcher
"json_url": "https://fortran-lang.org/_static/data.json", # shifted to custom local switcher
"version_match": language,
},
"primary_sidebar_end": [],
Expand Down