Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/heatrapy-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }} \
-d '{"base": "develop"}'
- uses: actions/checkout@v4
- name: Set up Python 3.10
- name: Set up Python 3.14
uses: actions/setup-python@v3
with:
python-version: "3.10"
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
project = 'heatrapy'
copyright = '2026, Daniel Silva'
author = 'Daniel Silva'
release = '2.1.0'
release = '2.1.1'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ incorporation of phase transitions.

|icon_github| `github repository <https://github.com/djsilva99/heatrapy>`_

|icon_heatrapy| current version: v2.1.0
|icon_heatrapy| current version: v2.1.1

.. |icon_github| image:: https://github.githubassets.com/favicons/favicon.png
:width: 25px
Expand Down
2 changes: 1 addition & 1 deletion heatrapy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Heatrapy.

author: Daniel Silva (djsilva@gmx.com)
current version: v2.1.0
current version: v2.1.1
url: https://github.com/djsilva99/heatrapy

This module allows to create thermal objects, establish thermal contact between
Expand Down
36 changes: 20 additions & 16 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
coverage==7.6.1
cycler==0.10.0
exceptiongroup==1.2.2
iniconfig==2.0.0
kiwisolver==1.3.1
contourpy==1.3.3
coverage==7.13.4
cycler==0.12.1
exceptiongroup==1.3.1
fonttools==4.61.1
iniconfig==2.3.0
kiwisolver==1.4.9
matplotlib==3.10.8
numpy==2.2.6
packaging==24.1
Pillow==12.1.1
pluggy==1.5.0
pyparsing==3.1.0
pytest==8.3.3
pytest-cov==5.0.0
python-dateutil==2.8.1
six==1.15.0
tomli==2.0.1
ruff==0.12.10
numpy==2.4.2
packaging==26.0
pillow==12.1.1
pluggy==1.6.0
Pygments==2.19.2
pyparsing==3.3.2
pytest==9.0.2
pytest-cov==7.0.0
python-dateutil==2.9.0.post0
ruff==0.15.4
setuptools==82.0.0
six==1.17.0
tomli==2.4.0
56 changes: 30 additions & 26 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,35 @@

from setuptools import setup

description = 'This package is a module for simulating dynamic 1D and 2D heat '
description += 'transfer processes by using the finite difference method. The '
description += 'packages is based on thermal objects. Two different '
description += 'approaches can be used: single thermal object and a system of '
description += 'thermal objects that can contact with each other. The heatrapy'
description += 'package includes the incorporation of phase transitions.'
description = (
'This package is a module for simulating dynamic 1D and 2D heat transfer '
'processes by using the finite difference method. The packages is based '
'on thermal objects. Two different approaches can be used: single thermal '
'object and a system of thermal objects that can contact with each other. '
'The heatrapy package includes the incorporation of phase transitions.'
)


setup(name='heatrapy',
version='2.1.0',
description='Library for simulating 1D and 2D heat transfer processes',
long_description=description,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Physics',
],
url='https://github.com/djsilva99/heatrapy',
author='Daniel Silva',
author_email='djsilva@gmx.com',
license='MIT',
packages=['heatrapy'],
install_requires=[
'numpy==2.2.6', 'matplotlib==3.10.8'
],
include_package_data=True,
zip_safe=False)
setup(
name='heatrapy',
version='2.1.1',
description='Library for simulating 1D and 2D heat transfer processes',
long_description=description,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.14',
'Topic :: Scientific/Engineering :: Physics',
],
url='https://github.com/djsilva99/heatrapy',
author='Daniel Silva',
author_email='djsilva@gmx.com',
license='MIT',
packages=['heatrapy'],
install_requires=[
'numpy==2.4.2',
'matplotlib==3.10.8'
],
include_package_data=True,
zip_safe=False
)