Skip to content

Commit

Permalink
Use github action to install poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
rkhwaja committed May 19, 2024
1 parent 208d714 commit 06d5f72
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,18 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12.0"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: abatilo/actions-poetry@v3
- name: Dependencies
run: |
curl -sSL https://install.python-poetry.org | python - --version 1.5.1
poetry config virtualenvs.create false
poetry install
- name: Lint
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fs.googledrivefs"
packages = [
{ include = "fs"}
]
version = "2.4.2"
version = "2.4.3"
description = "Pyfilesystem2 implementation for Google Drive"
authors = ["Rehan Khwaja <[email protected]>"]
license = "MIT"
Expand All @@ -14,7 +14,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -23,7 +22,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = ">=3.7"
python = ">=3.8"
fs = ">=2.4.13"
google-api-python-client = ">=1.7.10"
google-auth = ">=1.5.1"
Expand Down

0 comments on commit 06d5f72

Please sign in to comment.