Skip to content

Commit

Permalink
Merge pull request #113 from lsmvivek/main
Browse files Browse the repository at this point in the history
v-vivek2024-joss-majorupdate
  • Loading branch information
mn5hk authored Sep 6, 2024
2 parents 915c297 + 2fbb727 commit 7ba165e
Show file tree
Hide file tree
Showing 887 changed files with 18,084 additions and 33,057 deletions.
Binary file removed .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .github/workflows/ci-docs-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
- run: pip install mkdocs-git-revision-date-plugin
- run: pip install mkdocs-jupyter
- run: pip install mkdocstrings-python
- run: mkdocs gh-deploy --force
- run: mkdocs gh-deploy --force
3 changes: 2 additions & 1 deletion .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: Draft PDF
on: [push]

jobs:
Expand All @@ -14,7 +15,7 @@ jobs:
# This should be the path to the paper within your repo.
paper-path: paper.md
- name: Upload
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: paper
# This is the output path where Pandoc will write the compiled
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build and test

on: [push]

jobs:
build-and-test:
name: Ex1 (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["macos-latest",] # "macos-latest", "ubuntu-latest"] "windows-latest",
python-version: ["3.12"]
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: pysh
environment-file: environment.yml
python-version: ${{ matrix.python-version }} #3.12
auto-activate-base: false
- run: |
conda info
conda list
- name: Install package
run: pip install .
- name: Test with the unittest module
run: |
python -m unittest tests/test_pyshbundle.py
16 changes: 9 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
notebooks/.ipynb_checkpoints
notebooks/.ipynb_checkpoints/*
pyshbundle.egg-info/PKG-INFO
pyshbundle/.ipynb_checkoutpoints/
pyshbundle/.ipynb_checkpoints/*
pyshbundle/__pycache__/
pyshbundle/__pycache__/*
.DS_Store
dist
build
pyshbundle.egg-info
develloping_progress.txt
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
paper_org.md
pyproject.toml
Loading

0 comments on commit 7ba165e

Please sign in to comment.