Skip to content

Commit 74e7567

Browse files
Release v5.28.1 and Update Python (#17)
* Release v5.28.1 * add py3.9 and remove py3.6 (which is no longer supported * remove extraenous version bak * Pin grpc and grpc-tools to compatible versions * Pin flake8 so the tests hopefully work * Pin numpy so the tests hopefully work
1 parent 479ed33 commit 74e7567

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
python-version: [3.6, 3.7, 3.8]
17+
python-version: [3.7, 3.8, 3.9]
1818
os: [ubuntu-latest, macos-latest, windows-latest]
1919

2020
steps:
@@ -75,4 +75,4 @@ jobs:
7575
uses: pypa/gh-action-pypi-publish@master
7676
with:
7777
user: __token__
78-
password: ${{ secrets.PYPI_DEPLOYMENT_TOKEN }}
78+
password: ${{ secrets.PYPI_DEPLOYMENT_TOKEN }}

btrdb/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
## Module Info
1616
##########################################################################
1717

18-
__version_info__ = { 'major': 5, 'minor': 15, 'micro': 1, 'releaselevel': 'final'}
18+
__version_info__ = { 'major': 5, 'minor': 28, 'micro': 1, 'releaselevel': 'final'}
1919

2020
##########################################################################
2121
## Helper Functions

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# GRPC / Protobuff related
2-
grpcio>=1.19.0
3-
grpcio-tools>=1.19.0
2+
grpcio>=1.19.0,<=1.48.2
3+
grpcio-tools>=1.19.0,<=1.48.2
44

55
# Time related utils
66
pytz
77

88
# Misc libraries
99
pyyaml
10-
certifi
10+
certifi

tests/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ pytest==5.3.2
22
pytest-cov==2.8.1
33
pytest-flake8==1.1.0
44
freezegun==0.3.12
5+
flake8<5.0.0
56

67
# dependencies for conversions
7-
numpy>=1.15
8+
numpy==1.20.3
89
pandas
910
tabulate==0.8.6

0 commit comments

Comments
 (0)