Skip to content

Commit

Permalink
Merge pull request #318 from lbl-anp/release-v0.5.0
Browse files Browse the repository at this point in the history
Release v0.5.0
  • Loading branch information
jccurtis authored Feb 11, 2022
2 parents 09f710e + 5d1203c commit 975c522
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.5
current_version = 0.5.0
commit = True
tag = False

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install without dev dependencies
run: |
pip install --upgrade pip setuptools wheel
pip install --only-binary=numpy,scipy -r requirements-dev.txt
- name: Install package
run: |
pip install --only-binary=numpy,scipy -r requirements.txt
pip install .
- name: Make sure import works
run: python -c "import becquerel;"
- name: Install dev dependencies
run: pip install -r requirements-dev.txt
- name: Test with pytest
run: |
python -c 'import becquerel;'
pytest
run: pytest
3 changes: 2 additions & 1 deletion becquerel/__metadata__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__email__ = "[email protected]"
__description__ = "Tools for radiation spectral analysis."
__url__ = "https://github.com/lbl-anp/becquerel"
__version__ = "0.4.5"
__version__ = "0.5.0"
# classifiers from list at https://pypi.org/classifiers/
__classifiers__ = [
"Development Status :: 4 - Beta",
Expand All @@ -19,6 +19,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.black]
target-version = ['py36', 'py37', 'py38']
target-version = ['py36', 'py37', 'py38', 'py39']
include = '\.pyi?$'
exclude = '''
/(
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
-r requirements.txt
black>=22.1.0
bump2version
coverage
flake8>=4.0.1
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
asteval
beautifulsoup4
black>=22.1.0
future
h5py
html5lib
Expand Down

0 comments on commit 975c522

Please sign in to comment.