Skip to content

Commit

Permalink
fix(ci): Format yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
esloch committed Dec 1, 2023
1 parent bfdf9f9 commit 216603d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 18 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,38 @@
name: build
name: maketests

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
strategy:
matrix:
python-version:
- "3.9"

- '3.9'
concurrency:
group: ci-${{ github.ref }}
group: 'ci-${{ github.ref }}'
cancel-in-progress: true

defaults:
run:
shell: bash -l {0}
shell: 'bash -l {0}'

steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: latest
mamba-version: "*"
mamba-version: '*'
environment-file: conda/dev.yaml
channels: conda-forge,nodefaults
channels: 'conda-forge,nodefaults'
activate-environment: pysus
use-mamba: true
miniforge-variant: Mambaforge

- name: Install and set config poetry
- name: Install dependencies
run: |
export PATH="$HOME/.poetry/bin:$PATH"
curl -sSL https://install.python-poetry.org/ | python -
poetry config virtualenvs.create false
export PATH="$HOME/.poetry/bin:$PATH"
poetry config virtualenvs.create false
- name: Install main dependencies
run: |
Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ Unidecode = "^1.3.6"
dateparser = "^1.1.8"
pandas = ">=1.5.3"
urwid = "^2.1.2"
elasticsearch = { version = "7.16.2", extras=["preprocessing"] }
# FTP
bigtree = "^0.12.2"
aioftp = "^0.21.4"
humanize = "^4.8.0"

[tool.poetry.group.dev.dependencies]
compose-go = "^2.21.0"
Expand All @@ -44,11 +49,7 @@ ipykernel = "^6.25.1"
seaborn = "^0.12.2"
tomli = "^2.0.1"
sphinx-rtd-theme = "^1.3.0"
# FTP
bigtree = "^0.12.2"
aioftp = "^0.21.4"
humanize = "^4.8.0"
elasticsearch = { version = "7.16.2", extras=["preprocessing"] }


[tool.poetry.group.geo.dependencies]
geobr = { version = "^0.2.0", extras=["preprocessing"] }
Expand Down

0 comments on commit 216603d

Please sign in to comment.