Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [v0.2.4]
### Added
* Added functions to `basilisp.test` for using and combining test fixtures (#980)
* Added the `importing-resolve` function for dynamically importing and resolving a Python name (#1065, #1070)
Expand Down Expand Up @@ -604,6 +606,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Basilisp language and compiler base.

[v0.2.4]: https://github.com/basilisp-lang/basilisp/compare/v0.2.3..v0.2.4
[v0.2.3]: https://github.com/basilisp-lang/basilisp/compare/v0.2.2..v0.2.3
[v0.2.2]: https://github.com/basilisp-lang/basilisp/compare/v0.2.1..v0.2.2
[v0.2.1]: https://github.com/basilisp-lang/basilisp/compare/v0.2.0..v0.2.1
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "basilisp"
version = "0.2.3"
version = "0.2.4"
description = "A Clojure-like lisp written for Python"
authors = ["Christopher Rink <[email protected]>"]
license = "Eclipse Public License 1.0 (EPL-1.0)"
Expand Down Expand Up @@ -218,6 +218,7 @@ disable = [
"too-many-ancestors",
"too-many-public-methods",
"too-many-instance-attributes",
"too-many-positional-arguments",
"trailing-whitespace",
"unnecessary-lambda-assignment",
"unspecified-encoding",
Expand Down
2 changes: 1 addition & 1 deletion src/basilisp/lang/compiler/analyzer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pylint: disable=too-many-branches,too-many-lines,too-many-return-statements
# pylint: disable=abstract-class-instantiated,too-many-branches,too-many-lines,too-many-return-statements
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not exactly sure why this started happening with Pylint 3.3+ but it's not correct.

import builtins
import collections
import contextlib
Expand Down
2 changes: 1 addition & 1 deletion src/basilisp/lang/reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def _validate(self, val: Any, vf: Optional[RefValidator[T]] = None) -> None:
res = False

if not res:
raise ExceptionInfo(
raise ExceptionInfo( # pylint: disable=abstract-class-instantiated
"Invalid reference state",
lmap.map({kw.keyword("data"): val, kw.keyword("validator"): vf}),
)