Skip to content

Commit

Permalink
Merged in origin-hub (pull request thermohub#63)
Browse files Browse the repository at this point in the history
sync with Origin hub
  • Loading branch information
gdmiron committed Mar 2, 2023
2 parents 4d7caa0 + eb826f8 commit d6026d3
Show file tree
Hide file tree
Showing 36 changed files with 22,973 additions and 346 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: [push]

jobs:
paper:
runs-on: ubuntu-latest
name: Paper Draft
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build draft PDF
uses: openjournals/openjournals-draft-action@master
with:
journal: joss
# This should be the path to the paper within your repo.
paper-path: paper/paper.md
- name: Upload
uses: actions/upload-artifact@v1
with:
name: paper
# This is the output path where Pandoc will write the compiled
# PDF. Note, this should be the same directory as the input
# paper.md
path: paper/paper.pdf
5 changes: 2 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
config: ["Release"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Timestamp # Idea from https://tinyurl.com/47wz7vpv
id: timestamp
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Configuring Cache
id: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
/home/runner/.cache
Expand All @@ -50,7 +50,6 @@ jobs:
python-version: ${{ matrix.python-version }}
channels: conda-forge
channel-priority: true
use-only-tar-bz2: true # IMPORTANT: This needs to be set true for caching of miniconda packages to work properly!

- name: Configuring Conda Environment
shell: bash -l {0}
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
config: ["Release"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Timestamp # Idea from https://tinyurl.com/47wz7vpv
id: timestamp
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Configuring Cache
id: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
/Users/runner/Library/Caches/ccache
Expand All @@ -50,7 +50,6 @@ jobs:
python-version: ${{ matrix.python-version }}
channels: conda-forge
channel-priority: true
use-only-tar-bz2: true # IMPORTANT: This needs to be set true for caching of miniconda packages to work properly!

- name: Configuring Conda Environment
shell: bash -l {0}
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
config: ["Release"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Timestamp # Idea from https://tinyurl.com/47wz7vpv
id: timestamp
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Configuring Cache
id: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
C:\Users\runneradmin\clcache
Expand All @@ -52,7 +52,6 @@ jobs:
activate-environment: ''
channels: conda-forge
channel-priority: true
use-only-tar-bz2: true # IMPORTANT: This needs to be set true for caching of miniconda packages to work properly!

- name: Configuring Conda Environment
env:
Expand Down
32 changes: 32 additions & 0 deletions .hdoc.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[project]
name = "thermofun"
version = "0.4.2"

# Optional, adding this will enable direct links from the documentation
# to your source code.
git_repo_url = "https://github.com/thermohub/thermofun/"
git_default_branch = "master"

[paths]
compile_commands = "build/compile_commands.json"
# output_dir = "docs/hdoc-output"

[pages]
homepage = "docs/index.md"

[ignore]
# Symbols from any of the following path fragments will be ignored
ignore_private_members = true
paths = [
"/python/",
"/pytests/",
"/tests/",
"/Common/",
"OptimizationUtils.h",
"/Substances/Solvent/Reaktoro/",
"/Substances/Gases/s_solmod_.cpp",
"/Substances/Gases/s_solmod_.h",
"/Substances/Gases/s_solmod2_.cpp",
"/Substances/Gases/verror.h"
# more paths can be added as needed
]
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 3.9)

# Set the name of the project
project(ThermoFun VERSION 0.4.0 LANGUAGES CXX)
project(ThermoFun VERSION 0.4.3 LANGUAGES CXX)

# Set the cmake module path of the project
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules")
Expand Down
165 changes: 0 additions & 165 deletions COPYING.LESSER

This file was deleted.

File renamed without changes.
Loading

0 comments on commit d6026d3

Please sign in to comment.