Skip to content

Commit 326c3e5

Browse files
authored
Prepare patch release (#539)
1 parent 3981c8c commit 326c3e5

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v2
2020

2121
- name: Build wheels
22-
uses: pypa/cibuildwheel@v2.3.1
22+
uses: pypa/cibuildwheel@v2.11.1
2323
# to supply options, put them in 'env', like:
2424
env:
2525
CIBW_SKIP: '*-win32 *i686'

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [macos-latest, windows-latest, ubuntu-18.04, ubuntu-20.04]
19-
python: ["3.7", "3.8", "3.9", "3.10"]
19+
python: ["3.8", "3.9", "3.10"]
2020

2121
steps:
2222
- uses: actions/checkout@v2

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
:target: https://dev.azure.com/data61/Anonlink/_build/latest?definitionId=3&branchName=main
44

55

6-
76
.. image:: https://codecov.io/gh/data61/anonlink/branch/main/graph/badge.svg
87
:target: https://codecov.io/gh/data61/anonlink
98

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
bitarray==2.5.1
1+
bitarray==2.6.0
22
clkhash==0.16.1
33
Cython==0.29.32
44
hypothesis==6.9.2
55
pytest>=7.0.1
66
pytest-cov==3.0.0
7-
numpy==1.22.3; python_version >= '3.8'
7+
numpy==1.23.4; python_version >= '3.8'
88
numpy==1.19.5; python_version < '3.8'
99
mypy-extensions==0.4.3

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
here = os.path.abspath(os.path.dirname(__file__))
1717

1818
requirements = [
19-
"bitarray>=2.4.0",
19+
"bitarray>=2.5",
2020
"numpy>=1.19",
2121
"mypy-extensions>=0.4",
22-
"Cython>=0.29.10"
22+
"Cython>=0.29"
2323
]
2424

2525
test_requirements = [
@@ -68,7 +68,7 @@
6868

6969
setup(
7070
name="anonlink",
71-
version='0.15.0',
71+
version='0.15.1',
7272
description='Anonymous linkage using cryptographic hashes and bloom filters',
7373
long_description=readme,
7474
long_description_content_type='text/x-rst',
@@ -96,7 +96,6 @@
9696
"Operating System :: POSIX :: Linux",
9797
"Operating System :: Microsoft :: Windows",
9898
"Programming Language :: Python :: 3",
99-
"Programming Language :: Python :: 3.6",
10099
"Programming Language :: Python :: 3.7",
101100
"Programming Language :: Python :: 3.8",
102101
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)