Skip to content

Commit

Permalink
Version 0.3.0: Python 3.8+
Browse files Browse the repository at this point in the history
  • Loading branch information
MrNaif2018 committed Jul 13, 2022
1 parent 6f9b5d9 commit e841efb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
3 changes: 1 addition & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:

deploy:
docker:
- image: cimg/python:3.7
- image: cimg/python:3.8
steps:
- checkout

Expand Down Expand Up @@ -111,7 +111,6 @@ workflows:
matrix:
parameters:
v:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
rev: v4.3.0
hooks:
- id: check-merge-conflict
- repo: https://github.com/asottile/yesqa
rev: v1.3.0
hooks:
- id: yesqa
- repo: https://github.com/psf/black
rev: 22.3.0
rev: 22.6.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
Expand All @@ -20,12 +20,12 @@ repos:
hooks:
- id: flake8
- repo: https://github.com/asottile/pyupgrade
rev: v2.32.0
rev: v2.37.1
hooks:
- id: pyupgrade
args: ["--py37-plus"]
args: ["--py38-plus"]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
rev: v4.3.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand All @@ -46,6 +46,6 @@ repos:
args: ["--remove"]
- id: detect-private-key
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.6.2
rev: v2.7.1
hooks:
- id: prettier
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.3.0

We now support Python 3.8+ only

## 0.2.0

Properly use event loop
Expand Down
2 changes: 1 addition & 1 deletion bitccl/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.2.0"
VERSION = "0.3.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -41,4 +40,5 @@
url="https://github.com/bitcartcc/bitccl",
version=version_module.VERSION,
zip_safe=False,
python_requires=">=3.8",
)

0 comments on commit e841efb

Please sign in to comment.