From 66c06680b794225b7ecb65bad82fe77c2e343a8e Mon Sep 17 00:00:00 2001 From: Brooks Smith <42363318+smith120bh@users.noreply.github.com> Date: Tue, 2 Jun 2026 20:21:09 +1000 Subject: [PATCH 1/2] Update RTD links --- CITATION.cff | 2 +- README.md | 4 ++-- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 36f83e5b..3a910f55 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -10,4 +10,4 @@ version: 1.0.0 doi: 10.5281/zenodo.1234 date-released: 2016-08-08 repository-code: "https://github.com/ritchie46/anaStruct" -url: "https://anastruct.readthedocs.io/" +url: "https://anastruct-docs.readthedocs.io/" diff --git a/README.md b/README.md index 0ae25d98..16ed14e0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # anaStruct 2D Frames and Trusses [![Python tests](https://github.com/ritchie46/anaStruct/actions/workflows/test.yaml/badge.svg)](https://github.com/ritchie46/anaStruct/actions/workflows/test.yaml) -[![Documentation Status](https://readthedocs.org/projects/anastruct/badge/?version=latest)](http://anastruct.readthedocs.io/en/latest/?badge=latest) +[![Documentation Status](https://readthedocs.org/projects/anastruct-docs/badge/?version=latest)](http://anastructd-docs.readthedocs.io/en/latest/?badge=latest) ![PyPI - Version](https://img.shields.io/pypi/v/anastruct) ![PyPI - Downloads](https://img.shields.io/pypi/dm/anastruct) ![Latest Release](https://img.shields.io/github/release-date/ritchie46/anaStruct) @@ -23,7 +23,7 @@ $ pip install anastruct ## Read the docs! -[Documentation](http://anastruct.readthedocs.io) +[Documentation](http://anastruct-docs.readthedocs.io) ## Questions diff --git a/pyproject.toml b/pyproject.toml index f05a4bde..f0f79185 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ classifiers = [ readme = "README.md" homepage = "https://github.com/ritchie46/anaStruct" repository = "https://github.com/ritchie46/anaStruct" -documentation = "http://anastruct.readthedocs.io" +documentation = "http://anastruct-docs.readthedocs.io" packages = [{ include = "anastruct" }] include = ["py.typed", "*.pyx"] From 80632e812b14096ffb3420b3642511a17d35f86f Mon Sep 17 00:00:00 2001 From: Brooks Smith <42363318+smith120bh@users.noreply.github.com> Date: Tue, 2 Jun 2026 20:21:29 +1000 Subject: [PATCH 2/2] Remove greetings workflow, which is too fidgety and not working right --- .github/workflows/greetings.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml deleted file mode 100644 index 46d7c9f6..00000000 --- a/.github/workflows/greetings.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Greetings - -on: [pull_request_target] - -jobs: - greeting: - name: Greet First-Time Contributors - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - steps: - - uses: actions/first-interaction@v3 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue_message: "Thank you for reporting your first issue to the open-source anaStruct project! A maintainer should be along shortly to review your issue." - pr_message: "Thank you so much for contributing to the open-source anaStruct project! Your contribution will help thousands of engineers work more efficiently and accuractely.\n\nNow that you've created your first pull request here, please don't go away; take a look at the bottom of this page for the automated checks that should already be running. If they pass, great! If not, please click on 'Details' and see if you can fix the problem they've identified. Keep in mind that this repository uses the `black` autoformatter, `pylint` linter, and `mypy` type-checking; the most common problems can be fixed by making sure you've installed and run those systems. A maintainer should be along shortly to review your pull request and help get it added to anaStruct!"