Skip to content

Commit

Permalink
Merge branch 'dev/uv'
Browse files Browse the repository at this point in the history
  • Loading branch information
jhillairet committed Nov 7, 2024
2 parents 699d58c + be73b17 commit de01d62
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 172 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: yezz123/setup-uv@v4

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
uv venv
uv pip install -e .
# run the tests located in skrf/
- name: Test the code, tutorials and examples
- name: Test the code
if: ${{ always() }}
run: |
tox
uv run pytest
13 changes: 13 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[project]
name = "west-ic-antenna"
version = "0.12.0"
description = "WEST ICRH Antenna Electrical Model"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"ipywidgets>=8.1.5",
"matplotlib>=3.9.2",
"numpy>=2.1.3",
"pytest>=8.3.3",
"scikit-rf>=1.4.1",
]
148 changes: 0 additions & 148 deletions setup.py

This file was deleted.

19 changes: 0 additions & 19 deletions tox.ini

This file was deleted.

2 changes: 1 addition & 1 deletion west_ic_antenna/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.11'
__version__ = '0.12.0'

from .antenna import *
from .topica import TopicaResult
Expand Down
Empty file.

0 comments on commit de01d62

Please sign in to comment.