Skip to content

Commit

Permalink
Merge pull request #96 from CenterForTheBuiltEnvironment/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
FedericoTartarini authored Jan 15, 2024
2 parents ca9ff00 + 6621776 commit 9022e75
Show file tree
Hide file tree
Showing 16 changed files with 328 additions and 242 deletions.
5 changes: 0 additions & 5 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ version: '{branch}-{build}'
build: off
environment:
matrix:
- TOXENV: py38,codecov
TOXPYTHON: C:\Python38-x64\python.exe
PYTHON_HOME: C:\Python38-x64
PYTHON_VERSION: '3.8'
PYTHON_ARCH: '64'
- TOXENV: py39,codecov
TOXPYTHON: C:\Python39-x64\python.exe
PYTHON_HOME: C:\Python39-x64
Expand Down
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.8.12
current_version = 2.9.0
commit = True
tag = True

Expand Down
46 changes: 23 additions & 23 deletions .github/workflows/build-test-publish-testPyPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,26 @@ jobs:
run: |
tox -e py310
deploy:

needs: build

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 🐍
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Publish pythermalcomfort 📦 to Test PyPI
env:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
python -m twine upload --skip-existing --repository-url https://test.pypi.org/legacy/ dist/*.gz dist/*.whl
# deploy:
#
# needs: build
#
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python 🐍
# uses: actions/setup-python@v4
# with:
# python-version: '3.10'
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install setuptools wheel twine
# - name: Publish pythermalcomfort 📦 to Test PyPI
# env:
# TWINE_USERNAME: "__token__"
# TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
# run: |
# python setup.py sdist bdist_wheel
# python -m twine upload --skip-existing --repository-url https://test.pypi.org/legacy/ dist/*.gz dist/*.whl
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ env:
- SEGFAULT_SIGNALS=all
matrix:
include:
- env:
- TOXENV=py38,codecov
python: '3.8'
- env:
- TOXENV=py39,codecov
python: '3.9'
Expand Down
28 changes: 28 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
Changelog
=========

2.9.0 (2024-01-15)
-------------------

.. warning::
pythermalcomfort 2.9.0 is no longer compatible with Python 3.8

* The PHS model accepts arrays as inputs

2.8.11 (2023-10-26)
-------------------

* wrote more test and improved code

2.8.11 (2023-10-26)
-------------------

* fixed issues with the documentation and sorted the models in alphabetical order

2.8.7 (2023-10-23)
-------------------

* Adaptive ASHRAE now returns a dataclass

2.8.6 (2023-10-09)
-------------------

* re-structured and linted the code

2.8.4 (2023-09-20)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
year = "2019"
author = "Federico Tartarini"
copyright = "{0}, {1}".format(year, author)
version = release = "2.8.12"
version = release = "2.9.0"

pygments_style = "trac"
templates_path = ["."]
Expand Down
2 changes: 1 addition & 1 deletion pythermalcomfort/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "__version__ = '2.8.12'"
__version__ = "__version__ = '2.9.0'"

from pythermalcomfort.models import *
Loading

0 comments on commit 9022e75

Please sign in to comment.