Skip to content

Commit 1c96c43

Browse files
committed
first pypi test
1 parent be70790 commit 1c96c43

File tree

5 files changed

+7
-25
lines changed

5 files changed

+7
-25
lines changed

.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Set up Python
5353
uses: actions/setup-python@v4
5454
with:
55-
python-version: '3.10'
55+
python-version: '3.12'
5656
cache: 'pip'
5757

5858
- name: Install Hatch
@@ -66,7 +66,7 @@ jobs:
6666
- name: Publish to PyPI
6767
env:
6868
HATCH_INDEX_USER: __token__
69-
HATCH_INDEX_AUTH: ${{ secrets.PYPI_TOKEN }}
69+
HATCH_INDEX_AUTH: ${{ secrets.PYPI_TEST_TOKEN }}
7070
run: hatch publish -r test
7171
working-directory: openfast_io
7272

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,5 @@ varcache
6060
*.slxc
6161

6262
# Python cache files
63-
openfast_io/dist/
63+
openfast_io/dist/
64+
openfast_io/openfast_io/_version.py

openfast_io/openfast_io/FAST_writer.py

-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,6 @@ def execute(self):
236236

237237
def write_MainInput(self):
238238
# Main FAST Input File
239-
# Currently no differences between FASTv8.16 and OpenFAST.
240239

241240
self.FAST_InputFileOut = os.path.join(self.FAST_runDirectory, self.FAST_namingOut+'.fst')
242241

openfast_io/openfast_io/_version.py

-16
This file was deleted.

openfast_io/pyproject.toml

+3-5
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ version = "4.0.0.a1"
99
description = "Readers and writers for OpenFAST files."
1010
license = {file = "../LICENSE"}
1111
authors = [
12+
{name = "Mayank Chetan", email = "mayank.chetan@nrel.gov" },
13+
{name = "Andy Platt", email = "andy.platt@nrel.gov" },
14+
{name = "Derek Slaughter", email = "derek.slaughter@nrel.gov" },
1215
{ name = "NREL WISDEM Team", email = "systems.engineering@nrel.gov" },
13-
{ name = "Daniel Zalkind", email = "daniel.zalkind@nrel.gov" },
14-
{ name = "Garrett Barter", email = "garrett.barter@nrel.gov" },
15-
{ name = "Pietro Bortolotti", email = "pietro.bortolotti@nrel.gov" },
16-
{ name = "Mayank Chetan", email = "mayank.chetan@nrel.gov" },
17-
{ name = "John Jasa" },
1816
]
1917
maintainers = [
2018
{name = "Mayank Chetan", email = "mayank.chetan@nrel.gov" },

0 commit comments

Comments
 (0)