Skip to content

Commit

Permalink
Merge pull request #11 from saullocastro/polar_plots
Browse files Browse the repository at this point in the history
Tutorial: polar plots
  • Loading branch information
saullocastro authored Jan 30, 2025
2 parents fa28dd3 + 676267f commit 3b9c523
Show file tree
Hide file tree
Showing 10 changed files with 205 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
runs-on: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
runs-on: ${{ matrix.runs-on }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
runs-on: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ authors:
given-names: "Saullo G. P."
orcid: "https://orcid.org/0000-0001-9711-0991"
title: "Methods for analysis and design of composites"
version: 0.7.1
version: 0.7.2
doi: 10.5281/zenodo.2871782
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012-2024, Saullo G. P. Castro ([email protected]).
Copyright (c) 2012-2025, Saullo G. P. Castro ([email protected]).
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ Citing this repository
----------------------

Castro, SGP. Methods for analysis and design of composites (Version
0.7.1) [Computer software]. 2024. https://doi.org/10.5281/zenodo.2871782
0.7.2) [Computer software]. 2025. https://doi.org/10.5281/zenodo.2871782

Bibtex :

@misc{composites2024,
@misc{composites2025,
author = {Castro, Saullo G. P.},
doi = {10.5281/zenodo.2871782},
title = {{Methods for analysis and design of composites}}
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

project = 'composites'
author = 'Saullo G. P. Castro'
copyright = '2012-2024, ' + author
copyright = '2012-2025, ' + author

# The full version, including alpha/beta/rc tags
from composites.version import __version__
Expand Down
6 changes: 3 additions & 3 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ https://github.com/saullocastro/composites
Citing this library
-------------------

Castro, S. G. P. Methods for analysis and design of composites (Version 0.7.1) [Computer software]. 2024. https://doi.org/10.5281/zenodo.2871782
Castro, S. G. P. Methods for analysis and design of composites (Version 0.7.2) [Computer software]. 2025. https://doi.org/10.5281/zenodo.2871782

Bibtex :

@misc{composites2024,
@misc{composites2025,
author = {Castro, Saullo G. P.},
doi = {10.5281/zenodo.2871782},
title = {{Methods for analysis and design of composites (Version 0.7.1) [Computer software]. 2024}}
title = {{Methods for analysis and design of composites (Version 0.7.2) [Computer software]. 2025}}
}

Tutorials
Expand Down
192 changes: 192 additions & 0 deletions doc/source/post-polar-plots-laminate-stiffness.ipynb

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions doc/source/tutorials.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ Tutorials
:maxdepth: 1

opt-lightweight-discrete-ghost-layer
post-polar-plots-laminate-stiffness
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,13 @@ def read(fname):
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
License :: OSI Approved :: BSD License
"""

is_released = True
version = '0.7.1'
version = '0.7.2'

fullversion = write_version_py(version, is_released)

Expand Down

0 comments on commit 3b9c523

Please sign in to comment.