-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update workflow, requirements, ruff (#41)
* Update test/publish workflow * Update pre-commit, replace with ruff. * Rename * Update requirements.txt uv pip compile pyproject.toml -o requirements.txt --upgrade * Update dev requirements Manually. * Use requirements.txt in CI * No numpy 2.0, for now * Python 3.9 requirements.txt
- Loading branch information
Showing
9 changed files
with
132 additions
and
128 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,72 @@ | ||
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI | ||
name: Build and Test | ||
|
||
on: push | ||
|
||
jobs: | ||
build-n-publish: | ||
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.11 | ||
- name: Install Build | ||
run: | | ||
python -mpip install --upgrade pip | ||
pip install build | ||
- name: Build distribution | ||
run: | | ||
python -mbuild | ||
pip install dist/*.whl | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
path: ./dist/* | ||
test: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ['3.9', '3.10', '3.11', '3.12'] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: artifact | ||
path: dist | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pytest dist/*.whl -r requirements.txt -r requirements_dev.txt pytest-md pytest-emoji | ||
- name: Run pytest | ||
uses: pavelzw/pytest-action@510c5e90c360a185039bea56ce8b3e7e51a16507 # v2.2.0 | ||
with: | ||
click-to-expand: false | ||
emoji: true | ||
job-summary: true | ||
verbose: false | ||
custom-arguments: -v -ra | ||
custom-pytest: PYTHONDEVMODE=1 pytest | ||
report-title: Test Report | ||
|
||
pypi-publish: | ||
name: Upload release to PyPI | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: Release | ||
url: https://pypi.org/p/nxmx | ||
permissions: | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v3 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
python-version: '3.10' | ||
- name: Install pypa/build | ||
run: >- | ||
python -m | ||
pip install | ||
build | ||
--user | ||
- name: Build a binary wheel and a source tarball | ||
run: >- | ||
python -m | ||
build | ||
--sdist | ||
--wheel | ||
--outdir dist/ | ||
. | ||
- name: Publish distribution 📦 to PyPI | ||
if: startsWith(github.ref, 'refs/tags') | ||
name: artifact | ||
path: dist | ||
- name: Publish package distributions to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
password: ${{ secrets.PYPI_API_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
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,28 @@ | ||
h5py==3.9.0 | ||
numpy==1.25.2 | ||
pint==0.22 | ||
python-dateutil==2.8.2 | ||
scipy==1.11.1 | ||
# This file was autogenerated by uv via the following command: | ||
# uv pip compile pyproject.toml -o requirements.txt --python 3.9 | ||
appdirs==1.4.4 | ||
# via pint | ||
flexcache==0.3 | ||
# via pint | ||
flexparser==0.3.1 | ||
# via pint | ||
h5py==3.12.1 | ||
# via nxmx (pyproject.toml) | ||
numpy==1.26.4 | ||
# via | ||
# nxmx (pyproject.toml) | ||
# h5py | ||
# scipy | ||
pint==0.24.3 | ||
# via nxmx (pyproject.toml) | ||
python-dateutil==2.9.0.post0 | ||
# via nxmx (pyproject.toml) | ||
scipy==1.13.1 | ||
# via nxmx (pyproject.toml) | ||
six==1.16.0 | ||
# via python-dateutil | ||
typing-extensions==4.12.2 | ||
# via | ||
# flexcache | ||
# flexparser | ||
# pint |
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,7 +1,2 @@ | ||
h5py==3.9.0 | ||
numpy==1.25.2 | ||
pint==0.22 | ||
pytest==7.4.0 | ||
pytest-cov==4.1.0 | ||
python-dateutil==2.8.2 | ||
scipy==1.11.1 | ||
pytest==8.3.3 | ||
pytest-cov==5.0.0 |
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