Skip to content

Commit

Permalink
Merge pull request #45 from kssgarcia/develop_v2.0
Browse files Browse the repository at this point in the history
Develop v2.0
  • Loading branch information
nicoguaro authored Dec 27, 2024
2 parents 8a97ccc + 5b32fef commit 1b9ae30
Show file tree
Hide file tree
Showing 19 changed files with 564 additions and 4,790 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.11', '3.12', '3.13']

steps:
- name: Checkout code
Expand Down
23 changes: 23 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the OS, Python version, and other tools you might need
build:
os: ubuntu-24.04
tools:
python: "3.12"

# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: docs/conf.py

# Optionally, but recommended,
# declare the Python requirements required to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- requirements: docs/requirements.txt

2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "solidspy" %}
{% set version = "1.4.9" %}
{% set version = "1.5.5" %}

package:
name: {{ name|lower }}
Expand Down
6 changes: 2 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('../solidspy'))

import src

sys.path.insert(0, os.path.abspath('../src'))

# -- General configuration ------------------------------------------------

Expand Down Expand Up @@ -65,7 +63,7 @@
# The short X.Y version.
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = "1.4.9",
release = "1.5.5"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 6 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
numpy
scipy
matplotlib
easygui
meshio==5.3.5
pyvista
Loading

0 comments on commit 1b9ae30

Please sign in to comment.