Skip to content

Commit

Permalink
build: finally drop setup.py (#845)
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau authored Aug 8, 2023
2 parents b26c7d6 + c673653 commit cf9a93e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ jobs:
- uses: actions/setup-python@v2

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine build
run: pip install setuptools wheel twine build

- name: Build and publish
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
include:
- os: macos-latest # macos test
python-version: "3.10"
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion sepal_ui/sepalwidgets/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def _get_items(self) -> List[v.ListItem]:
"""
folder = self.folder

list_dir = [el for el in folder.glob("*/") if not el.name.startswith(".")]
list_dir = [el for el in folder.glob("*") if not el.name.startswith(".")]

if self.extensions:
list_dir = [
Expand Down
3 changes: 0 additions & 3 deletions setup.py

This file was deleted.

0 comments on commit cf9a93e

Please sign in to comment.