Skip to content

Commit

Permalink
Release 0.17.0 (#634)
Browse files Browse the repository at this point in the history
  • Loading branch information
hardbyte authored Oct 24, 2022
1 parent 79c080f commit 30f1b41
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ updates:
- package-ecosystem: "pip"
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "weekly"
open-pull-requests-limit: 2
2 changes: 1 addition & 1 deletion .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
release:
types: [ published ]
pull_request:
branches: [ master ]
branches: [ master, main ]

jobs:
build_dist:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/typechecking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Typechecking

on:
push:
branches: [ master ]
branches: [ master, main ]
pull_request:
branches: [ master ]
branches: [ master, main ]


jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Unit Testing

on:
push:
branches: [ master ]
branches: [ master, main ]
pull_request:
branches: [ master ]
branches: [ master, main ]

jobs:
unittests:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## new version

## 0.17.0

- Remove use of bitarray fork as upstream project now publishes wheels. #557, #567, #573
- Update dependencies


## 0.16.1

- `generate_clk_from_csv` and `generate_clks` now accept an optional `max_workers` argument.
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
bitarray==2.4.1
cryptography==36.0.2
jsonschema==4.4.0; python_version >= '3.7'
bitarray==2.6.0
cryptography==38.0.1
jsonschema==4.16.0; python_version >= '3.7'
jsonschema==3.2.0; python_version < '3.7'
hypothesis==6.43.3
mypy_extensions==0.4.3
pyblake2==1.1.2; python_version < '3.6'
pytest==7.1.2
pytest-cov==3.0.0
tqdm==4.64.0
tqdm==4.64.1
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

requirements = [
"bashplotlib>=0.6.5",
"bitarray>=1.0.0", # Fork of bitarray distributing binary wheels #153
"cryptography>=2.3",
"jsonschema>=3.0.2",
"bitarray>=2.4",
"cryptography>=36.0",
"jsonschema>=4.8",
"mypy_extensions>=0.3",
"pyblake2>=1.1.1; python_version < '3.6'",
"tqdm>=4.24",
Expand All @@ -18,7 +18,7 @@

setup(
name="clkhash",
version='0.16.1',
version='0.17.0',
description='Encoding utility to create Cryptographic Linkage Keys',
long_description=readme,
long_description_content_type='text/markdown',
Expand All @@ -37,10 +37,11 @@
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: Apache Software License",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py35, py36, py37
envlist = py38, py39, py310

[testenv]
deps =
Expand Down

0 comments on commit 30f1b41

Please sign in to comment.