scikit-learn

scikit-learn: machine learning in Python

https://github.com/scikit-learn/scikit-learn

Science Score: 64.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
    Links to: zenodo.org
  • Committers with academic emails
    201 of 3224 committers (6.2%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (12.1%) to scientific vocabulary

Keywords

data-analysis data-science machine-learning python statistics

Keywords from Contributors

alignment flexible closember tensors qt transformer wx tk jax gtk
Last synced: 4 months ago · JSON representation ·

Repository

scikit-learn: machine learning in Python

Basic Info
  • Host: GitHub
  • Owner: scikit-learn
  • License: bsd-3-clause
  • Language: Python
  • Default Branch: main
  • Homepage: https://scikit-learn.org
  • Size: 169 MB
Statistics
  • Stars: 63,238
  • Watchers: 2,138
  • Forks: 26,194
  • Open Issues: 2,175
  • Releases: 47
Topics
data-analysis data-science machine-learning python statistics
Created over 15 years ago · Last pushed 4 months ago
Metadata Files
Readme Contributing Funding License Code of conduct Citation Security

README.rst

.. -*- mode: rst -*-

|Azure| |Codecov| |CircleCI| |Nightly wheels| |Ruff| |PythonVersion| |PyPi| |DOI| |Benchmark|

.. |Azure| image:: https://dev.azure.com/scikit-learn/scikit-learn/_apis/build/status/scikit-learn.scikit-learn?branchName=main
   :target: https://dev.azure.com/scikit-learn/scikit-learn/_build/latest?definitionId=1&branchName=main

.. |CircleCI| image:: https://circleci.com/gh/scikit-learn/scikit-learn/tree/main.svg?style=shield
   :target: https://circleci.com/gh/scikit-learn/scikit-learn

.. |Codecov| image:: https://codecov.io/gh/scikit-learn/scikit-learn/branch/main/graph/badge.svg?token=Pk8G9gg3y9
   :target: https://codecov.io/gh/scikit-learn/scikit-learn

.. |Nightly wheels| image:: https://github.com/scikit-learn/scikit-learn/actions/workflows/wheels.yml/badge.svg?event=schedule
   :target: https://github.com/scikit-learn/scikit-learn/actions?query=workflow%3A%22Wheel+builder%22+event%3Aschedule

.. |Ruff| image:: https://img.shields.io/badge/code%20style-ruff-000000.svg
   :target: https://github.com/astral-sh/ruff

.. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/scikit-learn.svg
   :target: https://pypi.org/project/scikit-learn/

.. |PyPI| image:: https://img.shields.io/pypi/v/scikit-learn
   :target: https://pypi.org/project/scikit-learn

.. |DOI| image:: https://zenodo.org/badge/21369/scikit-learn/scikit-learn.svg
   :target: https://zenodo.org/badge/latestdoi/21369/scikit-learn/scikit-learn

.. |Benchmark| image:: https://img.shields.io/badge/Benchmarked%20by-asv-blue
   :target: https://scikit-learn.org/scikit-learn-benchmarks

.. |PythonMinVersion| replace:: 3.10
.. |NumPyMinVersion| replace:: 1.22.0
.. |SciPyMinVersion| replace:: 1.8.0
.. |JoblibMinVersion| replace:: 1.2.0
.. |ThreadpoolctlMinVersion| replace:: 3.1.0
.. |MatplotlibMinVersion| replace:: 3.5.0
.. |Scikit-ImageMinVersion| replace:: 0.19.0
.. |PandasMinVersion| replace:: 1.4.0
.. |SeabornMinVersion| replace:: 0.9.0
.. |PytestMinVersion| replace:: 7.1.2
.. |PlotlyMinVersion| replace:: 5.14.0

.. image:: https://raw.githubusercontent.com/scikit-learn/scikit-learn/main/doc/logos/scikit-learn-logo.png
  :target: https://scikit-learn.org/

**scikit-learn** is a Python module for machine learning built on top of
SciPy and is distributed under the 3-Clause BSD license.

The project was started in 2007 by David Cournapeau as a Google Summer
of Code project, and since then many volunteers have contributed. See
the `About us `__ page
for a list of core contributors.

It is currently maintained by a team of volunteers.

Website: https://scikit-learn.org

Installation
------------

Dependencies
~~~~~~~~~~~~

scikit-learn requires:

- Python (>= |PythonMinVersion|)
- NumPy (>= |NumPyMinVersion|)
- SciPy (>= |SciPyMinVersion|)
- joblib (>= |JoblibMinVersion|)
- threadpoolctl (>= |ThreadpoolctlMinVersion|)

=======

Scikit-learn plotting capabilities (i.e., functions start with ``plot_`` and
classes end with ``Display``) require Matplotlib (>= |MatplotlibMinVersion|).
For running the examples Matplotlib >= |MatplotlibMinVersion| is required.
A few examples require scikit-image >= |Scikit-ImageMinVersion|, a few examples
require pandas >= |PandasMinVersion|, some examples require seaborn >=
|SeabornMinVersion| and Plotly >= |PlotlyMinVersion|.

User installation
~~~~~~~~~~~~~~~~~

If you already have a working installation of NumPy and SciPy,
the easiest way to install scikit-learn is using ``pip``::

    pip install -U scikit-learn

or ``conda``::

    conda install -c conda-forge scikit-learn

The documentation includes more detailed `installation instructions `_.


Changelog
---------

See the `changelog `__
for a history of notable changes to scikit-learn.

Development
-----------

We welcome new contributors of all experience levels. The scikit-learn
community goals are to be helpful, welcoming, and effective. The
`Development Guide `_
has detailed information about contributing code, documentation, tests, and
more. We've included some basic information in this README.

Important links
~~~~~~~~~~~~~~~

- Official source code repo: https://github.com/scikit-learn/scikit-learn
- Download releases: https://pypi.org/project/scikit-learn/
- Issue tracker: https://github.com/scikit-learn/scikit-learn/issues

Source code
~~~~~~~~~~~

You can check the latest sources with the command::

    git clone https://github.com/scikit-learn/scikit-learn.git

Contributing
~~~~~~~~~~~~

To learn more about making a contribution to scikit-learn, please see our
`Contributing guide
`_.

Testing
~~~~~~~

After installation, you can launch the test suite from outside the source
directory (you will need to have ``pytest`` >= |PyTestMinVersion| installed)::

    pytest sklearn

See the web page https://scikit-learn.org/dev/developers/contributing.html#testing-and-improving-test-coverage
for more information.

    Random number generation can be controlled during testing by setting
    the ``SKLEARN_SEED`` environment variable.

Submitting a Pull Request
~~~~~~~~~~~~~~~~~~~~~~~~~

Before opening a Pull Request, have a look at the
full Contributing page to make sure your code complies
with our guidelines: https://scikit-learn.org/stable/developers/index.html

Project History
---------------

The project was started in 2007 by David Cournapeau as a Google Summer
of Code project, and since then many volunteers have contributed. See
the `About us `__ page
for a list of core contributors.

The project is currently maintained by a team of volunteers.

**Note**: `scikit-learn` was previously referred to as `scikits.learn`.

Help and Support
----------------

Documentation
~~~~~~~~~~~~~

- HTML documentation (stable release): https://scikit-learn.org
- HTML documentation (development version): https://scikit-learn.org/dev/
- FAQ: https://scikit-learn.org/stable/faq.html

Communication
~~~~~~~~~~~~~

Main Channels
^^^^^^^^^^^^^

- **Website**: https://scikit-learn.org
- **Blog**: https://blog.scikit-learn.org
- **Mailing list**: https://mail.python.org/mailman/listinfo/scikit-learn

Developer & Support
^^^^^^^^^^^^^^^^^^^^^^

- **GitHub Discussions**: https://github.com/scikit-learn/scikit-learn/discussions
- **Stack Overflow**: https://stackoverflow.com/questions/tagged/scikit-learn
- **Discord**: https://discord.gg/h9qyrK8Jc8

Social Media Platforms
^^^^^^^^^^^^^^^^^^^^^^

- **LinkedIn**: https://www.linkedin.com/company/scikit-learn
- **YouTube**: https://www.youtube.com/channel/UCJosFjYm0ZYVUARxuOZqnnw/playlists
- **Facebook**: https://www.facebook.com/scikitlearnofficial/
- **Instagram**: https://www.instagram.com/scikitlearnofficial/
- **TikTok**: https://www.tiktok.com/@scikit.learn
- **Bluesky**: https://bsky.app/profile/scikit-learn.org
- **Mastodon**: https://mastodon.social/@sklearn@fosstodon.org

Resources
^^^^^^^^^

- **Calendar**: https://blog.scikit-learn.org/calendar/
- **Logos & Branding**: https://github.com/scikit-learn/scikit-learn/tree/main/doc/logos

Citation
~~~~~~~~

If you use scikit-learn in a scientific publication, we would appreciate citations: https://scikit-learn.org/stable/about.html#citing-scikit-learn

Owner

  • Name: scikit-learn
  • Login: scikit-learn
  • Kind: organization

Repositories related to the scikit-learn Python machine learning library.

Citation (CITATION.cff)

cff-version: 1.2.0
title: scikit-learn
type: software
authors:
  - name: "The scikit-learn developers"
message: "If you use scikit-learn in a scientific publication, we would appreciate citations to the following paper:"
preferred-citation:
  type: article
  title: "Scikit-learn: Machine Learning in Python"
  authors:
  - family-names: "Pedregosa"
    given-names: "Fabian"
  - family-names: "Varoquaux"
    given-names: "Gaël"
  - family-names: "Gramfort"
    given-names: "Alexandre"
  - family-names: "Michel"
    given-names: "Vincent"
  - family-names: "Thirion"
    given-names: "Bertrand"
  - family-names: "Grisel"
    given-names: "Olivier"
  - family-names: "Blondel"
    given-names: "Mathieu"
  - family-names: "Prettenhofer"
    given-names: "Peter"
  - family-names: "Weiss"
    given-names: "Ron"
  - family-names: "Dubourg"
    given-names: "Vincent"
  - family-names: "Vanderplas"
    given-names: "Jake"
  - family-names: "Passos"
    given-names: "Alexandre"
  - family-names: "Cournapeau"
    given-names: "David"
  - family-names: "Brucher"
    given-names: "Matthieu"
  - family-names: "Perrot"
    given-names: "Matthieu"
  - family-names: "Duchesnay"
    given-names: "Édouard"
  journal: "Journal of Machine Learning Research"
  volume: 12
  start: 2825
  end: 2830
  year: 2011
  url: "https://jmlr.csail.mit.edu/papers/v12/pedregosa11a.html"

Committers

Last synced: 5 months ago

All Time
  • Total Commits: 29,744
  • Total Committers: 3,224
  • Avg Commits per committer: 9.226
  • Development Distribution Score (DDS): 0.934
Past Year
  • Commits: 1,126
  • Committers: 263
  • Avg Commits per committer: 4.281
  • Development Distribution Score (DDS): 0.823
Top Committers
Name Email Commits
Olivier Grisel o****l@e****g 1,956
Andreas Mueller a****r@a****e 1,795
Fabian Pedregosa f****a@i****r 1,566
Gael Varoquaux g****x@i****r 1,444
Lars Buitinck L****k@u****l 1,117
Thomas J. Fan t****n@g****m 919
Gilles Louppe g****e@g****m 745
Peter Prettenhofer p****r@g****m 723
Alexandre Gramfort a****t@i****r 708
Vlad Niculae v****d@v****o 681
Mathieu Blondel m****u@m****g 665
Guillaume Lemaitre g****8@g****m 655
Joel Nothman j****n@g****m 654
Loic Esteve l****e@y****m 575
Arnaud Joly a****y@u****e 531
Jérémie du Boisberranger 3****b 465
scikit-learn-bot t****v@g****m 317
Jaques Grobler j****r@i****r 308
Jake VanderPlas v****s@a****u 296
Adrin Jalali a****i@g****m 290
Manoj Kumar m****4@g****m 263
Hanmin Qin q****5@s****m 260
Nicolas Hug c****t@n****m 250
Jan Hendrik Metzen j****m@i****e 210
Robert Layton r****n@g****m 204
Nelle Varoquaux n****x@g****m 204
Lucy Liu j****6@g****m 196
Noel Dawe N****e@c****h 169
Christian Lorentzen l****h@g****m 162
Brian Holt b****8@c****k 154
and 3,194 more...
Committer Domains (Top 20 + Academic)
inria.fr: 16 nyu.edu: 10 gmx.de: 9 qq.com: 9 berkeley.edu: 7 163.com: 7 126.com: 5 columbia.edu: 4 posteo.de: 4 mit.edu: 4 yandex.ru: 4 mail.ru: 4 umich.edu: 4 pm.me: 3 cern.ch: 3 tecnico.ulisboa.pt: 3 msu.edu: 3 cea.fr: 3 cornell.edu: 3 alum.mit.edu: 3 csie.ntu.edu.tw: 2 dartmouth.edu: 2 ucsd.edu: 2 ieee.org: 2 uwaterloo.ca: 2 colorado.edu: 2 cs.stanford.edu: 2 unal.edu.co: 2 uw.edu: 2 seas.upenn.edu: 2 uci.edu: 2 usc.edu: 2 sussex.ac.uk: 2 ntu.edu.tw: 2 stanford.edu: 2 ais.uni-bonn.de: 2 ucl.ac.uk: 1 bu.edu: 1 cs.uni-freiburg.de: 1 vt.edu: 1 campus.tu-berlin.de: 1 wharton.upenn.edu: 1 klis.tsukuba.ac.jp: 1 uni-bremen.de: 1 nist.gov: 1 sewanee.edu: 1 cs.iiests.ac.in: 1 cs.umass.edu: 1 ctbp.ucsd.edu: 1 mgh.harvard.edu: 1 brandeis.edu: 1 post.bgu.ac.il: 1 anu.edu.au: 1 illinois.edu: 1 uni-konstanz.de: 1 andrew.cmu.edu: 1 sydney.edu.au: 1 std.qu.edu.az: 1 student.uw.edu.pl: 1 trinity.edu: 1 stern.nyu.edu: 1 iitb.ac.in: 1 tx.technion.ac.il: 1 nmr.mgh.harvard.edu: 1 uni-tuebingen.de: 1 uva.nl: 1 astro.washington.edu: 1 informatik.uni-bremen.de: 1 cvplws63.eps.surrey.ac.uk: 1 fz-juelich.de: 1 idi.ntnu.no: 1 sun.ac.za: 1 utexas.edu: 1 informatik.uni-freiburg.de: 1 lme81.informatik.uni-erlangen.de: 1 vit.ac.in: 1 u.northwestern.edu: 1 ucdenver.edu: 1 trincoll.edu: 1 drexel.edu: 1 neurostat.mit.edu: 1 ed.ac.uk: 1 surrey.ac.uk: 1 tu-dortmund.de: 1 ee.columbia.edu: 1 uchicago.edu: 1 campus.technion.ac.il: 1 cs.umd.edu: 1 myhunter.cuny.edu: 1 uni-muenster.de: 1 gmu.edu: 1 ucdavis.edu: 1 lsu.edu: 1 e.ntu.edu.sg: 1 case.edu: 1 univ-rennes1.fr: 1 ncsu.edu: 1 purdue.edu: 1 ie.u-ryukyu.ac.jp: 1 polytechnique.edu: 1 embl.de: 1 scripps.edu: 1 std.yeditepe.edu.tr: 1 csail.mit.edu: 1 hmc.edu: 1 mail.mcgill.ca: 1 colgate.edu: 1 tufts.edu: 1 quadram.ac.uk: 1 rwth-aachen.de: 1 vu.nl: 1 calpoly.edu: 1 tue.nl: 1 gatech.edu: 1 al.insper.edu.br: 1 informatik.uni-hamburg.de: 1 sms.ed.ac.uk: 1 univie.ac.at: 1 iiitnr.edu.in: 1 hiroshima-u.ac.jp: 1 visor.udg.edu: 1 imperial.ac.uk: 1 cs.utexas.edu: 1 email.bakersfieldcollege.edu: 1 alum.utoronto.ca: 1 mail.missouri.edu: 1 ic.ac.uk: 1 cs.colostate.edu: 1 cl.cam.ac.uk: 1 ethz.ch: 1 umn.edu: 1 u.nus.edu: 1 iitgn.ac.in: 1 channing.harvard.edu: 1 student.unimelb.edu.au: 1 northeastern.edu: 1 brown.edu: 1 ifht.rwth-aachen.de: 1 uni-jena.de: 1 cs.cmu.edu: 1 univ-rennes2.fr: 1 vlan-2666-10-17-16-173.staff.wireless.sydney.edu.au: 1 iitk.ac.in: 1 seas.harvard.edu: 1

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 2,066
  • Total pull requests: 6,205
  • Average time to close issues: over 1 year
  • Average time to close pull requests: 4 months
  • Total issue authors: 1,155
  • Total pull request authors: 1,066
  • Average comments per issue: 5.82
  • Average comments per pull request: 3.88
  • Merged pull requests: 3,785
  • Bot issues: 0
  • Bot pull requests: 26
Past Year
  • Issues: 564
  • Pull requests: 2,690
  • Average time to close issues: 8 days
  • Average time to close pull requests: 9 days
  • Issue authors: 322
  • Pull request authors: 447
  • Average comments per issue: 1.92
  • Average comments per pull request: 2.43
  • Merged pull requests: 1,558
  • Bot issues: 0
  • Bot pull requests: 18
Top Authors
Issue Authors
  • scikit-learn-bot (197)
  • glemaitre (61)
  • lorentzenchr (57)
  • amueller (48)
  • ogrisel (45)
  • lesteve (40)
  • adrinjalali (39)
  • thomasjpfan (24)
  • jeremiedbb (22)
  • lucyleeow (21)
  • adam2392 (18)
  • reshamas (18)
  • jnothman (17)
  • StefanieSenger (13)
  • rth (9)
Pull Request Authors
  • scikit-learn-bot (586)
  • lesteve (446)
  • glemaitre (353)
  • jeremiedbb (299)
  • lucyleeow (202)
  • Charlie-XIAO (194)
  • ogrisel (191)
  • adrinjalali (190)
  • lorentzenchr (178)
  • StefanieSenger (147)
  • thomasjpfan (107)
  • DimitriPapadopoulos (67)
  • OmarManzoor (63)
  • star1327p (63)
  • adam2392 (60)
Top Labels
Issue Labels
Needs Triage (646) Bug (584) New Feature (422) Documentation (286) help wanted (142) Enhancement (114) API (99) Needs Decision (96) module:linear_model (64) Build / CI (61) Moderate (54) module:ensemble (54) RFC (52) module:metrics (45) Needs Investigation (38) Needs Decision - Include Feature (36) Performance (34) module:model_selection (34) module:preprocessing (34) module:tree (29) good first issue (28) cython (28) Easy (25) Developer API (23) module:cluster (23) Array API (23) module:utils (22) Meta-issue (21) Hard (20) module:test-suite (17)
Pull Request Labels
Documentation (1,489) No Changelog Needed (914) Build / CI (869) module:utils (643) Quick Review (577) module:metrics (562) module:linear_model (314) cython (267) Waiting for Second Reviewer (255) module:ensemble (230) module:cluster (192) module:model_selection (192) Stalled (175) module:datasets (164) Array API (156) module:preprocessing (150) To backport (119) module:neighbors (104) module:decomposition (102) module:tree (101) module:feature_selection (97) Needs Decision (90) help wanted (81) module:manifold (64) module:inspection (64) Waiting for Reviewer (56) module:compose (56) module:covariance (54) module:feature_extraction (47) Developer API (47)

Packages

  • Total packages: 8
  • Total downloads:
    • pypi 107,446,118 last-month
  • Total docker downloads: 1,453,109,205
  • Total dependent packages: 9,300
    (may contain duplicates)
  • Total dependent repositories: 152,735
    (may contain duplicates)
  • Total versions: 156
  • Total maintainers: 12
  • Total advisories: 3
pypi.org: scikit-learn

A set of python modules for machine learning and data mining

  • Versions: 86
  • Dependent Packages: 8,580
  • Dependent Repositories: 142,401
  • Downloads: 107,445,994 Last month
  • Docker Downloads: 1,453,109,205
Rankings
Dependent packages count: 0.0%
Dependent repos count: 0.0%
Forks count: 0.0%
Downloads: 0.0%
Average: 0.0%
Stargazers count: 0.0%
Docker downloads count: 0.0%
Last synced: 5 months ago
conda-forge.org: scikit-learn
  • Versions: 31
  • Dependent Packages: 647
  • Dependent Repositories: 5,166
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.1%
Forks count: 0.1%
Average: 0.1%
Stargazers count: 0.2%
Last synced: 4 months ago
anaconda.org: scikit-learn

Scikit-learn is an open source machine learning library that supports supervised and unsupervised learning. It also provides various tools for model fitting, data preprocessing, model selection, model evaluation, and many other utilities.

  • Versions: 30
  • Dependent Packages: 73
  • Dependent Repositories: 5,166
Rankings
Dependent repos count: 0.2%
Dependent packages count: 0.4%
Forks count: 0.4%
Average: 0.4%
Stargazers count: 0.6%
Last synced: 4 months ago
pypi.org: recommender-testing11

simple random movie recommender

  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 21 Last month
Rankings
Forks count: 0.0%
Stargazers count: 0.0%
Dependent packages count: 6.9%
Average: 9.4%
Dependent repos count: 30.6%
Maintainers (1)
Last synced: 4 months ago
pypi.org: scikit-learn-val

Extended functionality of scikit-learn: Now train_test_split function can return three subsets for train, test and validation.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 37 Last month
Rankings
Dependent packages count: 10.1%
Downloads: 17.8%
Dependent repos count: 21.6%
Average: 23.6%
Forks count: 29.8%
Stargazers count: 38.8%
Maintainers (1)
Last synced: 4 months ago
pypi.org: scikit-learn-3way-split

Added new function train_test_val_split that returns three subsets for train, test and validation.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 52 Last month
Rankings
Dependent packages count: 10.1%
Downloads: 20.7%
Dependent repos count: 21.6%
Average: 24.2%
Forks count: 29.8%
Stargazers count: 38.8%
Maintainers (1)
Last synced: 4 months ago
pypi.org: sklearn-gini

A set of python modules for machine learning and data mining

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 10.2%
Average: 33.7%
Dependent repos count: 57.3%
Maintainers (1)
Last synced: 5 months ago
pypi.org: scikit-learn-gini

A set of python modules for machine learning and data mining

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 14 Last month
Rankings
Dependent packages count: 10.2%
Average: 33.7%
Dependent repos count: 57.3%
Maintainers (1)
Last synced: 4 months ago

Dependencies

.binder/requirements.txt pypi
  • matplotlib *
  • pandas *
  • scikit-image *
  • scikit-learn *
  • sphinx-gallery *
build_tools/azure/debian_atlas_32bit_requirements.txt pypi
  • cython *
  • joblib ==1.0.0
  • pytest ==5.0.1
  • threadpoolctl ==2.2.0
build_tools/azure/python_nogil_requirements.txt pypi
  • cython *
  • joblib *
  • matplotlib *
  • numpy *
  • pytest ==6.2.5
  • pytest-xdist *
  • scipy *
  • threadpoolctl *
build_tools/azure/ubuntu_atlas_requirements.txt pypi
  • cython *
  • joblib ==1.0.0
  • pytest *
  • pytest-xdist *
  • threadpoolctl ==2.0.0
.github/workflows/artifact-redirector.yml actions
  • larsoner/circleci-artifacts-redirector-action master composite
.github/workflows/assign.yml actions
.github/workflows/check-changelog.yml actions
  • actions/checkout v3 composite
.github/workflows/check-manifest.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
.github/workflows/label-blank-issue.yml actions
  • andymckay/labeler 1.0.4 composite
.github/workflows/labeler-module.yml actions
  • thomasjpfan/labeler v2.5.1 composite
.github/workflows/labeler-title-regex.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
.github/workflows/lint.yml actions
  • actions/checkout v3 composite
  • actions/download-artifact v3 composite
  • actions/setup-python v3 composite
  • actions/upload-artifact v3 composite
.github/workflows/publish_pypi.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
  • pypa/gh-action-pypi-publish v1.8.5 composite
.github/workflows/unassign.yml actions
.github/workflows/update-lock-files.yml actions
  • actions/checkout v4 composite
  • peter-evans/create-pull-request v5 composite
.github/workflows/update_tracking_issue.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
.github/workflows/wheels.yml actions
  • actions/checkout v3 composite
  • actions/download-artifact v3 composite
  • actions/setup-python v4 composite
  • actions/upload-artifact v3 composite
doc/binder/requirements.txt pypi
pyproject.toml pypi
setup.py pypi