Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
amancevice committed Jan 12, 2023
1 parent 54cf740 commit 292207a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@ name: build
on:
pull_request:
push:
paths:
- Dockerfile
- Pipfile.lock
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm install -g dockerlint
- run: dockerlint
build:
Expand All @@ -21,5 +24,5 @@ jobs:
- latest
- slim
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: make ${{ matrix.target }}
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm install -g dockerlint
- run: dockerlint
build-push:
Expand All @@ -22,7 +22,7 @@ jobs:
- latest
- slim
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ jupyterlab = "*"
matplotlib = "*"

[packages]
pandas = "==1.5.1"
pandas = "==1.5.2"
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# Pandas

![version](https://img.shields.io/docker/v/amancevice/pandas?color=blue&label=version&logo=docker&logoColor=eee&sort=semver&style=flat-square)
[![latest](https://img.shields.io/github/workflow/status/amancevice/docker-pandas/build?logo=github&style=flat-square)](https://github.com/amancevice/docker-pandas/actions)
[![latest](https://img.shields.io/github/actions/workflow/status/amancevice/docker-pandas/build.yml?logo=github&style=flat-square)](https://github.com/amancevice/docker-pandas/actions/workflows/build.yml)

Docker image with [pandas](https://github.com/pandas-dev/pandas) installed.

_Note: images using Python 2.7 are no longer supported_

## Pulling

Pull image tags with the `pandas` version you wish to use:
Expand Down

0 comments on commit 292207a

Please sign in to comment.