Skip to content

Commit ea7d1b8

Browse files
authored
Merge pull request #5 from jhillairet/update_history
Update website
2 parents e7b1160 + befedef commit ea7d1b8

42 files changed

Lines changed: 1191 additions & 14110 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

_images/example1.png

59.5 KB
Loading

_images/example2.png

39.8 KB
Loading

_images/example3.png

30.3 KB
Loading

_images/example4.png

141 KB
Loading

_images/example5.png

44.4 KB
Loading

_images/example6.png

109 KB
Loading

_sources/about.rst.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ Development History
2828
:align: right
2929
:height: 200
3030

31+
**scikit-rf** was created in 2009 by Alex Arsenovic while he was a graduate student at the University of Virginia’s millimeter wave research lab in 2009. It was originally called mwavepy, but was re-branded as a scikit to emphasize its relationship to the scientific python community.
3132

32-
**scikit-rf** was created in 2009 by Alex Arsenovic while he was a graduate student at the University of Virginia's millimeter wave research lab in 2009. It was originally called mwavepy, but was re-branded a scikit to emphasize its relationship to the scientific python community. **scikit-rf** is licensed under the :doc:`BSD License <license>` and is currently being actively developed by a group of volunteers `on Github <https://github.com/scikit-rf/scikit-rf/graphs/contributors>`_ .
33+
Since 2019, **scikit-rf** has been actively maintained by Julien Hillairet from the CEA/IRFM institute. **scikit-rf** is licensed under the :doc:`BSD License <license>` and is currently being actively developed by a group of volunteers `on Github <https://github.com/scikit-rf/scikit-rf/graphs/contributors>`_ . With more than 80 volunteers having contributed to the package, version 1.0.0 was released in 2024, indicating that the package is sufficiently stable and performant for a widespread adoption.
3334

3435
|
3536
|
@@ -220,7 +221,7 @@ The French Alternative Energies and Atomic Energy Commission or CEA (French: Com
220221
|
221222
|
222223
223-
If your lab, company, or organization uses **scikit-rf** and would like to be listed please contact me at **alexanderarsenovic at gmail.com**
224+
If your lab, company, or organization uses **scikit-rf** and would like to be listed please contact **julien.hillairet at gmail.com**
224225

225226
|
226227
|

_sources/index.rst.txt

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,23 @@ examples, see the `Documentation <http://scikit-rf.readthedocs.org/>`_
6161
Some Examples
6262
--------------------------
6363

64-
.. raw:: html
65-
:file: carousel_simple.html
66-
67-
|
64+
.. carousel::
65+
:show_controls:
66+
:show_indicators:
67+
:show_fade:
68+
:show_dark:
69+
70+
.. image:: _static/example1.png
71+
72+
.. image:: _static/example2.png
73+
74+
.. image:: _static/example3.png
75+
76+
.. image:: _static/example4.png
6877

78+
.. image:: _static/example5.png
6979

80+
.. image:: _static/example6.png
7081

7182

7283
-------------
@@ -106,12 +117,11 @@ Features
106117
Help/Feedback/BUGs
107118
--------------------------
108119

109-
* For questions about usage, suggestions, or to provide general feedback, please see the `Mailing List <http://groups.google.com/group/scikit-rf>`_ or post in the user channel on the `scikit-rf slack <https://scikit-rf.slack.com>`_
120+
* For questions about usage, suggestions, or to provide general feedback, please see the `GitHub Discussion section <https://github.com/scikit-rf/scikit-rf/discussions>`_ or post in the `scikit-rf Matrix channel <https://app.element.io/#/room/#scikit-rf:matrix.org>`_
110121

111122

112123
* If you find a problem in scikit-rf, please post an issue to the `Issue Tracker <https://github.com/scikit-rf/scikit-rf/issues>`_
113124

114-
* Still need help? Contact me at **alexanderarsenovic at gmail.com**
115125

116126

117127

_sources/install.rst.txt

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,22 @@
1414
Install
1515
----------
1616

17+
.. |pypi| image:: https://img.shields.io/pypi/pyversions/scikit-rf
18+
:alt: PyPI - Python Version
1719

18-
**scikit-rf** is supported and tested on Python versions 2.7, 3.5, 3.6. There are several ways to install listed below.
20+
.. |version| image:: https://img.shields.io/pypi/v/scikit-rf
21+
:alt: PyPI - Version
22+
23+
**scikit-rf** is supported and tested on |pypi|.
24+
25+
Current version of **scikit-rf** is |version|. There are several ways to install **scikit-rf**, listed below.
1926

2027
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2128
anaconda (recommended)
2229
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2330

2431
The easiest way to install scikit-rf is to first install
25-
`anaconda <http://continuum.io/downloads>`_. Once anaconda is installe, you can
32+
`anaconda <http://continuum.io/downloads>`_. Once anaconda is installed, you can
2633
install scikit-rf from the `conda-forge <https://conda-forge.github.io/>`_ channel by entering the following into a terminal::
2734

2835
conda install -c conda-forge scikit-rf
@@ -32,10 +39,17 @@ install scikit-rf from the `conda-forge <https://conda-forge.github.io/>`_ chann
3239
pip
3340
~~~~~~~~~~~~~~~~
3441

35-
If you dont want to install anaconda (really, why not?), you can use `pip`::
42+
If you dont want to install anaconda, you can use `pip`::
3643

3744
pip install scikit-rf
3845

46+
**scikit-rf** does not install all optional dependencies by default, but if you need some of them just do ::
47+
48+
pip install scikit-rf[plot,visa,xlsx,netw]
49+
50+
or just a subset of them.
51+
52+
3953
~~~~~~~~~~~
4054
git
4155
~~~~~~~~~~~
@@ -45,6 +59,6 @@ The bleeding-edge development version of **scikit-rf** may be installed using::
4559
4660
git clone https://github.com/scikit-rf/scikit-rf.git
4761
cd scikit-rf
48-
python setup.py install
62+
pip install .
4963

5064

0 commit comments

Comments
 (0)