-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #259 from nlesc-nano/release
REL: Release Auto-FOX 0.10.0
- Loading branch information
Showing
9 changed files
with
59 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Publish | ||
|
||
on: | ||
release: | ||
types: [published, edited] | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
|
||
- name: Install dependencies | ||
run: pip install wheel twine | ||
|
||
- name: Python info | ||
run: | | ||
which python | ||
python --version | ||
- name: Installed packages | ||
run: pip list | ||
|
||
- name: Build the package | ||
run: python setup.py sdist bdist_wheel | ||
|
||
- name: Publish the package | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,6 +84,7 @@ jobs: | |
else | ||
pip install -e .[test_no_optional] | ||
fi | ||
pip install auto-FOX-data@git+https://github.com/nlesc-nano/[email protected] | ||
- name: Info Python | ||
shell: bash | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""The Auto-FOX version.""" | ||
|
||
__version__ = '0.9.1' | ||
__version__ = '0.10.0' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
[metadata] | ||
description_file = README.rst | ||
license_file = LICENSE | ||
|
||
[aliases] | ||
# Define `python setup.py test` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,11 +23,10 @@ | |
tests_require_no_optional = [ | ||
'pytest>=5.4.0', | ||
'pytest-cov', | ||
'auto-FOX-data@git+https://github.com/nlesc-nano/[email protected]', | ||
] | ||
tests_require = [ | ||
'ase>=3.21.1', | ||
'CAT@git+https://github.com/nlesc-nano/CAT@master', | ||
'nlesc-CAT>=0.10.0', | ||
] | ||
tests_require += tests_require_no_optional | ||
tests_require += docs_require | ||
|
@@ -85,7 +84,7 @@ | |
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU Lesser General Public License', | ||
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', | ||
'Natural Language :: English', | ||
'Operating System :: Unix', | ||
'Operating System :: MacOS', | ||
|
@@ -109,12 +108,9 @@ | |
'AssertionLib>=2.3', | ||
'noodles>=0.3.3', | ||
'h5py>=2.10', | ||
'qmflows@git+https://github.com/SCM-NV/qmflows@master', | ||
'qmflows>=0.11.0', | ||
'plams>=1.5.1', | ||
], | ||
setup_requires=[ | ||
'pytest-runner' | ||
], | ||
tests_require=tests_require, | ||
extras_require={ | ||
'docs': docs_require, | ||
|