From 5cc02346878decebbf8a2451086846eb9430548e Mon Sep 17 00:00:00 2001 From: Alex Carney Date: Tue, 27 Sep 2022 20:42:20 +0100 Subject: [PATCH 1/4] Relax version bounds --- requirements.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 5208a18..6c07372 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ -Sphinx==1.3.1 -sphinx-autobuild==0.5.2 -sphinx_rtd_theme==0.1.9 -livereload==2.4.0 +Sphinx +sphinx-autobuild +sphinx_rtd_theme From fcb82f0311e9691b4eca3340c95aaeb750d842f0 Mon Sep 17 00:00:00 2001 From: Alex Carney Date: Tue, 27 Sep 2022 20:42:36 +0100 Subject: [PATCH 2/4] Ignore virtualenvs --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ff50022..4184010 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ +/.env /.tox /build From 909e1b0fb3204197b4b024b9098edeb413403182 Mon Sep 17 00:00:00 2001 From: Alex Carney Date: Tue, 27 Sep 2022 20:44:53 +0100 Subject: [PATCH 3/4] Add links to pretix, pretalix and current events --- source/schedule.rst | 19 ++++++++++--------- source/tickets.rst | 39 ++++----------------------------------- 2 files changed, 14 insertions(+), 44 deletions(-) diff --git a/source/schedule.rst b/source/schedule.rst index a42d04a..ce30911 100644 --- a/source/schedule.rst +++ b/source/schedule.rst @@ -1,12 +1,13 @@ Schedule ======== -We've committed to the following things, which need to find their way onto the -schedule: - -- Django Girls workshop (all day Thursday) -- Teachers' day (all day Friday) -- Children's day (all day Saturday) -- A welcome session for first-time attendees (Friday morning) -- The PyCon UK Society's AGM -- Code4Research track (Sat, Sun and sprints on Monday) +TDB + +Pretalix +-------- + +Our CfP process and schedule is managed through `Pretalix `_ + +The management page for this year's event is `here `_ + + diff --git a/source/tickets.rst b/source/tickets.rst index 1402fcb..2d8d6ff 100644 --- a/source/tickets.rst +++ b/source/tickets.rst @@ -25,40 +25,9 @@ about the following, but make responses optional: * Age -Tito -==== +Pretix +------ -We're selling tickets through `Tito `_. +We're selling tickets through `Pretix `_. -The tickets page is `here `_. - -Refunding tickets ------------------ - -We will offer a full refund on tickets until 1st September, and a 50% refund thereafter. - -To refund a ticket from the `Tito admin interface `_: - -* Click "Orders", search for the ticket-holder's name -* Click "Cancel this order" -* Click "Yes" when asked if you're sure -* Click "Refund via Stripe" - -Upgrading tickets ------------------ - -We allow people to upgrade their tickets through their purchase of a `Ticket Upgrade `_ ticket. - -To process a Ticket Upgrade via the `Tito admin interface `_, you find the original ticket, update its type, and then void the Ticket Upgrade. In detail: - -* Click "Attendees" -* Find the relevant Ticket Upgrade ticket - * Tickets can be filtered by type if required - * This should have the number of the original ticket that needs to be upgraded -* Find the original ticket via its ticket number -* Click "Edit attendee details" -* Change the ticket type appropriately -* Add "upgraded" as a tag -* Save the ticket -* Find the Ticket Upgrade ticket again -* Click "Void ticket", then "Confirm void", then "No" (in answer to the question about refunds) +The tickets page for this year's event is `here `_. From d3bcc5b7a7a118655c6cef39648758c7bcd44f8f Mon Sep 17 00:00:00 2001 From: Alex Carney Date: Tue, 27 Sep 2022 20:56:04 +0100 Subject: [PATCH 4/4] Add simple github action --- .github/workflows/build.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..4a93d82 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,32 @@ +name: Build Documentation + +on: + pull_request: + branches: + - main + push: + branches: + - main + +jobs: + docs: + name: Build + runs-on: ubuntu-latest + steps: + - uses: 'actions/checkout@v3' + + - uses: 'actions/setup-python@v4' + with: + python-version: '3.10' + + - run: | + set -e + python --version + python -m pip install --upgrade pip tox + name: Setup Environment + + - id: build + run: | + tox -e build + name: Run Tox +