Skip to content

Commit

Permalink
0.3.2 (#130)
Browse files Browse the repository at this point in the history
* βž– Remove reduandant deps

* πŸ”– 0.3.2

* πŸ’š Remove python3.10 from CI

* πŸ“Œ Pin pandas version

* ⬆️ Upgrade pipda to v0.6

* πŸ’š Fix CI
  • Loading branch information
pwwang authored May 13, 2022
1 parent 1d0ed61 commit 1bbb52a
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 59 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ jobs:
if: "! contains(github.event.head_commit.message, 'wip')"
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
## dependencies install is too slow
# python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand All @@ -20,10 +22,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8
python -m pip install poetry
poetry config virtualenvs.create false
poetry install -v
python -m pip install flake8
- name: Run flake8
run: flake8 pipen
- name: Test with pytest
Expand Down
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 0.3.2

- ⬆️ Upgrade rtoml to v0.8
- ⬆️ Upgrade pipda to v0.6

## 0.3.1

Expand Down
107 changes: 52 additions & 55 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repository = "https://github.com/pwwang/pipen"
[tool.poetry.dependencies]
python = "^3.7.1" # align with datar/pandas
liquidpy = "^0.7"
pandas = "^1"
pandas = "^1.3"
rich = "^12"
python-slugify = "^6"
enlighten = "^1"
Expand All @@ -28,7 +28,7 @@ xqute = "^0.1"
# simplug = "^0.0"
## including rtoml
python-simpleconf = {version = "^0.5", extras = ["toml"]}
pipda = "^0.5"
pipda = "^0.6"
## included in pipda
# varname = "^0.8"

Expand Down

0 comments on commit 1bbb52a

Please sign in to comment.