Skip to content

Commit 8cb3a5b

Browse files
committed
testing workflow edits
1 parent 8161172 commit 8cb3a5b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/publish_to_pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ jobs:
3333
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
3434
run: |
3535
python setup.py sdist bdist_wheel
36-
twine --verbose upload dist/*
36+
twine upload --verbose dist/*

setup.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
setup.py
33
"""
44
import os
5+
import shlex
56
from codecs import open
6-
from setuptools import setup, find_packages
7-
from setuptools.command.develop import develop
87
from subprocess import check_call
9-
import shlex
108
from warnings import warn
119

10+
from setuptools import find_packages, setup
11+
from setuptools.command.develop import develop
12+
1213

1314
class PostDevelopCommand(develop):
1415
"""
@@ -59,8 +60,8 @@ def run(self):
5960
keywords="nsrdb",
6061
python_requires='>=3.9',
6162
classifiers=[
62-
"Development Status :: Beta",
63-
"Intended Audience :: Modelers",
63+
"Development Status :: 4 - Beta",
64+
"Intended Audience :: Science/Research",
6465
"License :: OSI Approved :: BSD License",
6566
"Natural Language :: English",
6667
"Programming Language :: Python :: 3.7",

0 commit comments

Comments
 (0)