Skip to content

Commit

Permalink
bump version to 1.0 (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcumming authored Feb 15, 2023
1 parent 2000e3f commit 71d0494
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ on: [push, pull_request]

jobs:
unittest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Bootstrap
run: |
./bootstrap.sh
- name: Generic Unittests
run: |
./test_stackinator.py
unittestpy36:
runs-on: ubuntu-20.04
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python -m pip install --upgrade pip setuptools build
python -m build
- name: Publish Stackinator to PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
user: __token__
Expand Down
7 changes: 6 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ license = BSD 3-Clause
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: BSD License
Operating System :: POSIX :: Linux
Environment :: Console
Expand Down
2 changes: 1 addition & 1 deletion stackinator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re


VERSION = '0.1'
VERSION = '1.0'
root_logger = logging.getLogger('stackinator')

stackinator_version_info = tuple(re.split(r'\.|-', VERSION))
2 changes: 1 addition & 1 deletion stackinator/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def configure_logging(logfile):


def log_header(args):
root_logger.info('Spack Stack Tool')
root_logger.info('Stackinator')
root_logger.info(f' recipe path: {args.recipe}')
root_logger.info(f' build path : {args.build}')

Expand Down

0 comments on commit 71d0494

Please sign in to comment.