Skip to content
This repository has been archived by the owner on Dec 15, 2024. It is now read-only.

Commit

Permalink
Version 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MrNaif2018 committed Jan 10, 2024
1 parent 1188a5c commit b8860ad
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.coverage
.idea
.mypy_cache
.prettiercache
.pytest_cache
.vscode
__pycache__
Expand Down
16 changes: 9 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-merge-conflict
- repo: https://github.com/asottile/yesqa
rev: v1.5.0
hooks:
- id: yesqa
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.12.1
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/pycqa/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
- repo: https://github.com/asottile/pyupgrade
rev: v3.10.1
rev: v3.15.0
hooks:
- id: pyupgrade
args: ["--py38-plus"]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand All @@ -46,6 +46,8 @@ repos:
args: ["--remove"]
- id: detect-private-key
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.1
rev: v4.0.0-alpha.8
hooks:
- id: prettier
require_serial: true
args: ["--cache-location=.prettiercache"]
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Latest changes

## 0.4.3

Don't install a separate tests package, but include tests in source tarball

## 0.4.2

Rename BitcartCC to Bitcart
Expand Down
8 changes: 8 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
include CONTRIBUTING.md
include CHANGELOG.md
include LICENSE
include README.md

recursive-include tests *
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
2 changes: 1 addition & 1 deletion bitccl/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.4.2"
VERSION = "0.4.3"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
bitcart
httpx[http2]==0.25.* # TODO: remove pin when 1.0 is out
httpx[http2]
Jinja2
RestrictedPython
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
include_package_data=True,
keywords=["bitcart", "bitccl", "programminglanguage", "compiler"],
name="bitccl",
packages=find_packages(),
packages=find_packages(exclude=["tests", "tests.*"]),
url="https://github.com/bitcart/bitccl",
version=version_module.VERSION,
zip_safe=False,
Expand Down

0 comments on commit b8860ad

Please sign in to comment.