Skip to content

Commit

Permalink
testing workflow edits
Browse files Browse the repository at this point in the history
  • Loading branch information
bnb32 committed Jan 12, 2024
1 parent 8161172 commit 8cb3a5b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine --verbose upload dist/*
twine upload --verbose dist/*
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
setup.py
"""
import os
import shlex
from codecs import open
from setuptools import setup, find_packages
from setuptools.command.develop import develop
from subprocess import check_call
import shlex
from warnings import warn

from setuptools import find_packages, setup
from setuptools.command.develop import develop


class PostDevelopCommand(develop):
"""
Expand Down Expand Up @@ -59,8 +60,8 @@ def run(self):
keywords="nsrdb",
python_requires='>=3.9',
classifiers=[
"Development Status :: Beta",
"Intended Audience :: Modelers",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
Expand Down

0 comments on commit 8cb3a5b

Please sign in to comment.