Skip to content

Commit f253b91

Browse files
Removed UW logo, and added workflow to publish
1 parent fec4aac commit f253b91

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Deploy Sphinx documentation to Pages
2+
3+
on:
4+
push:
5+
branches: [main] # branch to trigger deployment
6+
7+
jobs:
8+
pages:
9+
runs-on: ubuntu-latest
10+
environment:
11+
name: github-pages
12+
url: ${{ steps.deployment.outputs.page_url }}
13+
permissions:
14+
pages: write
15+
id-token: write
16+
steps:
17+
- id: deployment
18+
uses: sphinx-notes/pages@v3
19+

source/conf.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
project = 'Programming in Python'
2121

2222
# the one with the text too
23-
html_logo = "_static/UWPCE_logo_full.png"
23+
# html_logo = "_static/UWPCE_logo_full.png"
2424

2525
source_suffix = '.rst'
2626
# The master toctree document.
@@ -44,12 +44,12 @@
4444

4545
author = ", ".join(sorted(author_list, key=lambda n: n.split()[-1]))
4646

47-
copyright = ("2020, University of Washington, {}. "
47+
copyright = ("2025, {}. "
4848
"Creative Commons Attribution-ShareAlike 4.0 license".format(author)
4949
).format(author)
5050

5151
# The full version, including alpha/beta/rc tags
52-
release = '7.0'
52+
release = '8.0'
5353

5454

5555
# -- General configuration ---------------------------------------------------
@@ -84,7 +84,6 @@
8484
# 'analytics_id': 'UA-XXXXXXX-1', # Provided by Google in your dashboard
8585
# 'github_url': 'https://github.com/UWPCE-PythonCert/ProgrammingInPython',
8686
'logo_only': True,
87-
'display_version': False,
8887
'prev_next_buttons_location': 'both',
8988
'style_external_links': True,
9089
# 'vcs_pageview_mode': '',

0 commit comments

Comments
 (0)