Skip to content

Commit

Permalink
Update documented python version support; add py3.9 test configuration (
Browse files Browse the repository at this point in the history
#122)

* fix up supported python versions statements

* add python 3.9 test config

* add whatsnew note to hopefully trigger CI
  • Loading branch information
kandersolar authored Oct 28, 2021
1 parent 2da9668 commit 3db62c1
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ workflows:
- test-python-3.6
- test-python-3.7
- test-python-3.8
- test-python-3.9
jobs:
test-python-3.6: &build-template
working_directory: ~/SunPower/pvfactors
Expand Down Expand Up @@ -56,3 +57,7 @@ jobs:
<<: *build-template
docker:
- image: circleci/python:3.8.7
test-python-3.9:
<<: *build-template
docker:
- image: circleci/python:3.9.7-buster
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ The users can also create a "report" while running the simulations that will rel
Installation
------------

pvfactors is currently compatible and tested with Python 2 and 3, and is available in `PyPI <https://pypi.org/project/pvfactors/>`_. The easiest way to install pvfactors is to use pip_ as follows:
pvfactors is currently compatible and tested with 3.6+, and is available in `PyPI <https://pypi.org/project/pvfactors/>`_. The easiest way to install pvfactors is to use pip_ as follows:

.. code:: sh
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/installation/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Installation
Install with pip
----------------

``pvfactors`` works with both python 2 and 3.
``pvfactors`` currently supports python 3.6+.

The easiest way to install ``pvfactors`` is using pip_:

Expand Down
5 changes: 5 additions & 0 deletions docs/sphinx/whatsnew/v1.5.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
v1.5.2 (DATE XX, 2021)
======================

Enhancements
------------

* Add python 3.9 to test configuration (:ghpull:`122`)

Fixes
-----

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
]

Expand Down

0 comments on commit 3db62c1

Please sign in to comment.