Skip to content

Commit 998d571

Browse files
authored
Merge pull request #19 from NREL/pythonVersion
Python version
2 parents 84de020 + 0a87e64 commit 998d571

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
fail-fast: false
5151
matrix:
52-
python-version: ['3.10']
52+
python-version: ['3.10', '3.11', '3.12']
5353
os: ['ubuntu-latest', 'macos-latest']
5454
defaults:
5555
run:

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
with open(os.path.join(here, "brd", "version.py"), encoding="utf-8") as f:
1111
version = f.read()
12-
version = version.split('=')[-1].strip().strip('"').strip("'")
12+
version = version.split("=")[-1].strip().strip('"').strip("'")
1313

1414
setup(
1515
name="brd",
@@ -24,6 +24,8 @@
2424
"License :: BSD 3 License",
2525
"Natural Language :: English",
2626
"Programming Language :: Python :: 3.10",
27+
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
2729
],
2830
package_data={"": ["*.json", "*.yaml", "*.csv", "data_conditional_mean"]},
2931
include_package_data=True,

0 commit comments

Comments
 (0)