Skip to content

Commit

Permalink
Merge pull request #295 from MassimoCimmino/issue294_version-2-2-3
Browse files Browse the repository at this point in the history
Issue294 version 2 2 3
  • Loading branch information
MassimoCimmino committed Jun 29, 2024
2 parents 3c82fb7 + b82f0ce commit 384c294
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
fail-fast: false

steps:
Expand Down
26 changes: 16 additions & 10 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
# .readthedocs.yaml
# Read the Docs configuration file
# Read the Docs configuration file for Sphinx projects
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
# Set the OS, Python version and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"

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

# Optionally build your docs in additional formats such as PDF
# Optionally build your docs in additional formats such as PDF and ePub
formats:
- pdf
- pdf

# Optionally set the version of Python and requirements required to build your docs
# Optional but recommended, declare the Python requirements required
# to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
version: 3.7
install:
- requirements: doc/requirements.txt
install:
- requirements: doc/requirements.txt
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Version 2.3 (in development)

## Version 2.2.3 (2024-07-01)

### New features

* [Issue 276](https://github.com/MassimoCimmino/pygfunction/issues/276) - Added functions to the `boreholes` module for the generation of rectangular fields in a staggered configuration.
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors:
given-names: "Massimo"
orcid: "https://orcid.org/0000-0002-9981-9926"
title: "pygfunction"
version: 2.2.2
date-released: 2023-01-09
version: 2.2.3
date-released: 2024-07-01
url: "https://github.com/MassimoCimmino/pygfunction"
preferred-citation:
type: conference-paper
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Copyright (c) 2017-2023, Massimo Cimmino
Copyright (c) 2017-2024, Massimo Cimmino
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@

# General information about the project.
project = u'pygfunction'
copyright = u'2017-2022, Massimo Cimmino'
copyright = u'2017-2024, Massimo Cimmino'
author = u'Massimo Cimmino'

# The version info for the project you're documenting, acts as replacement for
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering
Topic :: Utilities

Expand All @@ -28,7 +28,7 @@ install_requires =
numpy >= 1.21.5
scipy >= 1.7.3
secondarycoolantprops >= 1.1
python_requires = >=3.7
python_requires = >=3.8

[options.extras_require]
doc =
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[tox]
minversion = 3.24.5
envlist = py37, py38, py39, py310, py311
envlist = py38, py39, py310, py311, py312
isolated_build = true

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
setenv =
Expand Down

0 comments on commit 384c294

Please sign in to comment.