Skip to content

Commit

Permalink
Add py3.10 test configuration (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
kandersolar authored Feb 22, 2022
1 parent e0ea9d5 commit 7670341
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ workflows:
- test-python-3.7
- test-python-3.8
- test-python-3.9
- test-python-3.10
jobs:
test-python-3.6: &build-template
working_directory: ~/SunPower/pvfactors
Expand Down Expand Up @@ -50,3 +51,7 @@ jobs:
<<: *build-template
docker:
- image: cimg/python:3.9.6
test-python-3.10:
<<: *build-template
docker:
- image: cimg/python:3.10.1
2 changes: 1 addition & 1 deletion docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
'sphinx.ext.todo',
'sphinx.ext.coverage',
'nbsphinx',
'sphinxcontrib.napoleon',
'sphinx.ext.napoleon',
'sphinxcontrib_github_alt'
]

Expand Down
23 changes: 23 additions & 0 deletions docs/sphinx/whatsnew/v1.5.3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.. _whatsnew_153:

v1.5.3 (TBD)
======================

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

* Add python3.10 to test configuration (ghpull:`129`)


Requirements
------------


Bug Fixes
----------



Contributors
------------
* Kevin Anderson (:ghuser:`kanderso-nrel`)
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
]

Expand All @@ -47,7 +48,7 @@
extras_require={
'testing': TESTS_REQUIRES,
'docs': ['Sphinx~=4.0', 'sphinx_rtd_theme', 'nbsphinx',
'sphinxcontrib-napoleon', 'sphinxcontrib_github_alt',
'sphinxcontrib_github_alt',
'ipykernel']
},
license=LICENSE
Expand Down

0 comments on commit 7670341

Please sign in to comment.