From 79216f3a7a3b0528cb6213a22fa8eb4e06d19512 Mon Sep 17 00:00:00 2001 From: Samuel Burbulla Date: Mon, 20 Nov 2023 18:43:49 +0200 Subject: [PATCH 1/7] Add docs workflow. --- .github/workflows/docs.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 00000000..b80de7be --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,28 @@ +name: docs +on: + push: + branches: + - main +permissions: + contents: write +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Configure Git Credentials + run: | + git config user.name github-actions[bot] + git config user.email 41898282+github-actions[bot]@users.noreply.github.com + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV + - uses: actions/cache@v3 + with: + key: mkdocs-material-${{ env.cache_id }} + path: .cache + restore-keys: | + mkdocs-material- + - run: pip install mkdocs-material + - run: mkdocs gh-deploy --force From a1dab5e41fbae176a02e49865011470cb97193e4 Mon Sep 17 00:00:00 2001 From: Samuel Burbulla Date: Mon, 20 Nov 2023 18:44:35 +0200 Subject: [PATCH 2/7] Update python versions. --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4f7bb30e..4f228950 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest"] - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] timeout-minutes: 20 @@ -49,7 +49,7 @@ jobs: fail-fast: false matrix: os: ["macos-latest"] - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] timeout-minutes: 20 @@ -85,10 +85,10 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Set up Python 3.10 + - name: Set up Python 3.12 uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.12" - name: Install dependencies run: | From 66fff382cd2d694161043d5ab19abce06f38006d Mon Sep 17 00:00:00 2001 From: Samuel Burbulla Date: Mon, 20 Nov 2023 19:07:44 +0200 Subject: [PATCH 3/7] Add badges. --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 58bb1e03..e6874c41 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,16 @@
-Continuity + + Documentation + + + Test + + + PyTorch + + +Continuity Mapping continuous functions with neural networks. From c4b8bd7f2bcfdc69c45c3396cfd6cebeb65ad3d3 Mon Sep 17 00:00:00 2001 From: Samuel Burbulla Date: Mon, 20 Nov 2023 19:08:34 +0200 Subject: [PATCH 4/7] Use 3.11 for code-quality workflow. --- .github/workflows/code-quality.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 7f927101..e3149866 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.12" + python-version: "3.11" - name: Run pre-commits uses: pre-commit/action@v3.0.0 From bda596429a5caa6fd16904e2cad7a680baa0601c Mon Sep 17 00:00:00 2001 From: Samuel Burbulla Date: Mon, 20 Nov 2023 19:11:57 +0200 Subject: [PATCH 5/7] Decrease logo size. --- README.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e6874c41..7b438616 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,18 @@
+Continuity + +Mapping continuous functions with neural networks. + + + PyTorch + Documentation Test - - PyTorch - - -Continuity - -Mapping continuous functions with neural networks. -
# Description From b18a3dbcec0d6f2f47bb04313a4735a0030075c7 Mon Sep 17 00:00:00 2001 From: Samuel Burbulla Date: Mon, 20 Nov 2023 19:13:20 +0200 Subject: [PATCH 6/7] Adjust link. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b438616..d5b9fd4d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Mapping continuous functions with neural networks. PyTorch - + Documentation From c42a150e29f1cba4199960a1eb479e204e7eb11b Mon Sep 17 00:00:00 2001 From: Samuel Burbulla Date: Mon, 20 Nov 2023 19:15:24 +0200 Subject: [PATCH 7/7] Set python 3.11 for coverage. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4f228950..47d3eb10 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -85,10 +85,10 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Set up Python 3.12 + - name: Set up Python 3.11 uses: actions/setup-python@v2 with: - python-version: "3.12" + python-version: "3.11" - name: Install dependencies run: |