Skip to content

Commit

Permalink
fix: Fix xonsh version (#120)
Browse files Browse the repository at this point in the history
* Remove support for python 3.8
  • Loading branch information
xmnlab authored Oct 15, 2024
1 parent 4a57552 commit e53e131
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 95 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
release:
gen-docs:
runs-on: ubuntu-latest
timeout-minutes: 15

Expand All @@ -30,7 +30,7 @@ jobs:
activate-environment: makim
auto-update-conda: true
conda-solver: libmamba
python-version: "3.8"
python-version: "3.9"

- name: Install deps
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:

tests:
strategy:
fail-fast: false
matrix:
python_version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down
116 changes: 26 additions & 90 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 @@ -23,11 +23,11 @@ exclude = [
"makim" = "makim.__main__:run_app"

[tool.poetry.dependencies]
python = ">=3.8.1,<4"
python = ">=3.9,<4"
sh = ">=2.0.0"
pyyaml = ">=5.0"
jinja2 = ">=2.0"
xonsh = ">=0.14.0"
xonsh = ">=0.15.0"
python-dotenv = ">=0.21.1"
typer = ">=0.9.0"
fuzzywuzzy = ">=0.18.0"
Expand Down

0 comments on commit e53e131

Please sign in to comment.