Skip to content

Switch to using a fork of bitarray that distributes binary wheels. #308

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 30, 2019
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
1 change: 1 addition & 0 deletions .azurePipeline/wholeBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ parameters:
jobs:
- job: 'test_and_publish'
strategy:
maxParallel: 2
matrix:
${{ each py in parameters.pythonVersions }}:
${{ each os in parameters.operatingSystems }}:
Expand Down
15 changes: 9 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
## 0.14.0 (in development)

- Fix bug where empty inputs don't generate tokens.
- CLI commands to delete runs nad projects.
- Migrate to Azure DevOps for CI testing.
- Synthetic data generation using distributions.
- CLI commands to delete runs and projects. #265
- Migrate to Azure DevOps for CI testing. #262
- Synthetic data generation using distributions. #271, #275
- Switch to using a fork of `bitarray` that distributes binary wheels. This means installing clkhash no longer
requires a c compiler. #308

BREAKING CHANGE:
### Breaking Changes

- The cli method `hash` requires only one secret instead of two. #303
- The clks generated with `clkhash` <= 0.14.0 are not compatible with clks from version 0.14.0 onwards.

- The cli method `hash` requires only one secret instead of two.
- The clks pre 0.14 are not compatible with clks from version 0.14.0

## 0.13.0

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bashplotlib==0.6.5
bitarray==0.9.3
bitarray-hardbyte==1.1.0
click==7.0
cryptography==2.7
enum34==1.1.6; python_version < '3.4'
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

requirements = [
"bashplotlib>=0.6.5",
"bitarray>=0.8",
"bitarray-hardbyte>=1.0.0", # Fork of bitarray distributing binary wheels #153
"click>=6.7",
"cryptography>=2.3",
"enum34==1.1.6; python_version < '3.4'",
Expand All @@ -33,7 +33,7 @@

setup(
name="clkhash",
version='0.14.0',
version='0.14.0-dev',
description='Encoding utility to create Cryptographic Linkage Keys',
long_description=readme,
long_description_content_type='text/markdown',
Expand Down