Skip to content

Commit

Permalink
Upgraded to Basilisp 0.3.0, python [3.9, 3.13]
Browse files Browse the repository at this point in the history
  • Loading branch information
ikappaki committed Nov 9, 2024
1 parent b73a095 commit 348a4fc
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 87 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/tests-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
version: ['3.8', '3.9', '3.10', '3.11', '3.12']
version: ['3.9', '3.10', '3.11', '3.12', '3.13']
include:
- os: windows-latest
version: '3.12'
version: '3.13'
- os: macos-latest
version: '3.12'
version: '3.13'

steps:
- uses: actions/checkout@v4
Expand All @@ -46,5 +46,8 @@ jobs:
run: poetry install

- name: Run tests
run: poetry run basilisp test -v
# workaround for https://github.com/basilisp-lang/basilisp/issues/1119
env:
PYTHONPATH: ${{ github.workspace }}
run: poetry run pytest -v

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 0.1.1

- Upgraded min supported Basilisp version to 0.3.0, Python version range to [3.9, 3.13],.

## 0.1.0

- Ported `clojure.pprint` source code to Basilisp as a standalone library.
142 changes: 63 additions & 79 deletions poetry.lock

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

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[tool.poetry]
name = "basilisp-pprint"
version = "0.1.0"
version = "0.1.1"
description = ""
authors = ["ikappaki <[email protected]>"]
readme = "README.md"
packages = [{include = "basilisp_pprint", from = "src"}]

[tool.poetry.dependencies]
python = "^3.8"
basilisp = "^0.2.4"
python = "^3.9"
basilisp = ">=0.3.0"


[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest = ">=8.3.3"

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 348a4fc

Please sign in to comment.