Skip to content

Improve github actions #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Black Format Checker
name: Black + Ruff Format Checker
on: [push, pull_request]
jobs:
black-format-check:
Expand All @@ -9,3 +9,8 @@ jobs:
with:
options: "--diff --check"
src: "."
ruff-format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
21 changes: 5 additions & 16 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
pandas-streaming: streaming API over pandas
===========================================

.. image:: https://github.com/sdpython/pandas_streaming/blob/main/_doc/_static/project_ico.png?raw=true
:target: https://github.com/sdpython/pandas_streaming/

.. image:: https://travis-ci.com/sdpython/pandas_streaming.svg?branch=main
:target: https://app.travis-ci.com/github/sdpython/pandas_streaming
:alt: Build status

.. image:: https://ci.appveyor.com/api/projects/status/4te066r8ne1ymmhy?svg=true
:target: https://ci.appveyor.com/project/sdpython/pandas-streaming
:alt: Build Status Windows
Expand All @@ -23,10 +16,10 @@ pandas-streaming: streaming API over pandas

.. image:: https://img.shields.io/badge/license-MIT-blue.svg
:alt: MIT License
:target: http://opensource.org/licenses/MIT
:target: https://opensource.org/license/MIT/

.. image:: https://codecov.io/github/sdpython/pandas_streaming/coverage.svg?branch=main
:target: https://codecov.io/github/sdpython/pandas_streaming?branch=main
.. image:: https://codecov.io/gh/sdpython/pandas-streaming/branch/main/graph/badge.svg?token=0caHX1rhr8
:target: https://codecov.io/gh/sdpython/pandas-streaming

.. image:: http://img.shields.io/github/issues/sdpython/pandas_streaming.png
:alt: GitHub Issues
Expand All @@ -48,7 +41,7 @@ pandas-streaming: streaming API over pandas
:target: https://github.com/sdpython/pandas_streaming/
:alt: size

`pandas_streaming <http://www.xavierdupre.fr/app/pandas_streaming/helpsphinx/index.html>`_
**pandas_streaming**
aims at processing big files with `pandas <http://pandas.pydata.org/>`_,
too big to hold in memory, too small to be parallelized with a significant gain.
The module replicates a subset of `pandas <http://pandas.pydata.org/>`_ API
Expand Down Expand Up @@ -84,8 +77,4 @@ The module can also stream an existing dataframe.
It contains other helpers to split datasets into
train and test with some weird constraints.

**Links:**

* `GitHub/pandas_streaming <https://github.com/sdpython/pandas_streaming/>`_
* `documentation <http://www.xavierdupre.fr/app/pandas_streaming/helpsphinx/index.html>`_
* `Blog <http://www.xavierdupre.fr/app/pandas_streaming/helpsphinx/blog/main_0000.html#ap-main-0>`_
* `documentation <https://sdpython.github.io/doc/pandas-streaming/dev/>`_
2 changes: 1 addition & 1 deletion _doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

# The following is used by sphinx.ext.linkcode to provide links to github
linkcode_resolve = make_linkcode_resolve(
"pandas-streaming",
"pandas_streaming",
(
"https://github.com/sdpython/pandas-streaming/"
"blob/{revision}/{package}/"
Expand Down
18 changes: 8 additions & 10 deletions _doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,6 @@
pandas-streaming: streaming API over pandas
===========================================

.. image:: https://github.com/sdpython/pandas_streaming/blob/main/_doc/_static/project_ico.png?raw=true
:target: https://github.com/sdpython/pandas_streaming/

.. image:: https://travis-ci.com/sdpython/pandas_streaming.svg?branch=main
:target: https://app.travis-ci.com/github/sdpython/pandas_streaming
:alt: Build status

.. image:: https://ci.appveyor.com/api/projects/status/4te066r8ne1ymmhy?svg=true
:target: https://ci.appveyor.com/project/sdpython/pandas-streaming
:alt: Build Status Windows
Expand All @@ -27,10 +20,10 @@ pandas-streaming: streaming API over pandas

.. image:: https://img.shields.io/badge/license-MIT-blue.svg
:alt: MIT License
:target: http://opensource.org/licenses/MIT
:target: https://opensource.org/license/MIT/

.. image:: https://codecov.io/github/sdpython/pandas_streaming/coverage.svg?branch=main
:target: https://codecov.io/github/sdpython/pandas_streaming?branch=main
.. image:: https://codecov.io/gh/sdpython/pandas-streaming/branch/main/graph/badge.svg?token=0caHX1rhr8
:target: https://codecov.io/gh/sdpython/pandas-streaming

.. image:: http://img.shields.io/github/issues/sdpython/pandas_streaming.png
:alt: GitHub Issues
Expand Down Expand Up @@ -66,3 +59,8 @@ and implements other functionalities for machine learning.
i_ex
CHANGELOGS
license

**Links:**

* `GitHub/pandas_streaming <https://github.com/sdpython/pandas_streaming/>`_
* `documentation <https://sdpython.github.io/doc/pandas-streaming/dev/>`_
2 changes: 1 addition & 1 deletion pandas_streaming/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__version__ = "0.5.0"
__author__ = "Xavier Dupré"
__github__ = "https://github.com/sdpython/pandas_streaming"
__url__ = "http://www.xavierdupre.fr/app/pandas_streaming/helpsphinx/index.html"
__url__ = "https://sdpython.github.io/doc/pandas-streaming/dev/"
__license__ = "MIT License"