Skip to content

Commit 71d0494

Browse files
authored
bump version to 1.0 (eth-cscs#62)
1 parent 2000e3f commit 71d0494

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed

.github/workflows/main.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ on: [push, pull_request]
44

55
jobs:
66
unittest:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Set up Python ${{ matrix.python-version }}
14+
uses: actions/setup-python@v4
15+
with:
16+
python-version: ${{ matrix.python-version }}
17+
- name: Bootstrap
18+
run: |
19+
./bootstrap.sh
20+
- name: Generic Unittests
21+
run: |
22+
./test_stackinator.py
23+
24+
unittestpy36:
725
runs-on: ubuntu-20.04
826
strategy:
927
matrix:

.github/workflows/publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python -m pip install --upgrade pip setuptools build
1919
python -m build
2020
- name: Publish Stackinator to PyPI
21-
uses: pypa/gh-action-pypi-publish@master
21+
uses: pypa/gh-action-pypi-publish@release/v1
2222
with:
2323
verbose: true
2424
user: __token__

setup.cfg

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,13 @@ license = BSD 3-Clause
88
long_description = file: README.md
99
long_description_content_type = text/markdown
1010
classifiers =
11-
Development Status :: 4 - Beta
11+
Development Status :: 5 - Production/Stable
1212
Programming Language :: Python :: 3.6
13+
Programming Language :: Python :: 3.7
14+
Programming Language :: Python :: 3.8
15+
Programming Language :: Python :: 3.9
16+
Programming Language :: Python :: 3.10
17+
Programming Language :: Python :: 3.11
1318
License :: OSI Approved :: BSD License
1419
Operating System :: POSIX :: Linux
1520
Environment :: Console

stackinator/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import re
33

44

5-
VERSION = '0.1'
5+
VERSION = '1.0'
66
root_logger = logging.getLogger('stackinator')
77

88
stackinator_version_info = tuple(re.split(r'\.|-', VERSION))

stackinator/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def configure_logging(logfile):
3434

3535

3636
def log_header(args):
37-
root_logger.info('Spack Stack Tool')
37+
root_logger.info('Stackinator')
3838
root_logger.info(f' recipe path: {args.recipe}')
3939
root_logger.info(f' build path : {args.build}')
4040

0 commit comments

Comments
 (0)