Skip to content

Commit 8a8d6b6

Browse files
committed
Pypdu pre-release version 0.1.6a2
* Directly exposes Chunks containing XOR encoded samples constituting a given Series * Fixes chunk min/max time parsing + update cibuildwheel for Python 3.11 wheels. + update conan to 1.54
1 parent 3d65a22 commit 8a8d6b6

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/pypi-push.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
- uses: actions/checkout@master
4848
with:
4949
submodules: recursive
50+
- name: Create default conan profile
51+
run: conan profile detect
5052
- name: Build wheel
5153
run: PYTHONPATH=$PYTHONPATH:/opt/rh/python27/root/usr/lib/python2.7/site-packages /usr/bin/python2.7 ./setup.py bdist_wheel
5254
- name: Auditwheel
@@ -134,6 +136,8 @@ jobs:
134136
run: python2 -m pip install setuptools wheel
135137
- name: Install conan
136138
run: python3 -m pip install conan
139+
- name: Create default conan profile
140+
run: conan profile detect
137141
- name: Add conancenter remote
138142
run: conan remote add -f conancenter https://center.conan.io
139143
- name: Build wheel
@@ -169,6 +173,8 @@ jobs:
169173
run: python2 -m pip install setuptools==41.0.1 wheel==0.33.1
170174
- name: Install conan
171175
run: python3 -m pip install conan
176+
- name: Create default conan profile
177+
run: conan profile detect
172178
- name: Add conancenter remote
173179
run: conan remote add -f conancenter https://center.conan.io
174180
- name: Build wheel

docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ FROM quay.io/pypa/manylinux2014_x86_64
88
RUN yum install -y python3 python27-python-pip glibc-headers python2-devel python3-devel
99
RUN /usr/bin/python3 -m ensurepip --upgrade
1010
RUN PYTHONPATH=$PYTHONPATH:/opt/rh/python27/root/usr/lib/python2.7/site-packages /usr/bin/python2.7 -m pip install --upgrade 'setuptools<45.0.0' 'wheel<0.38'
11-
RUN /usr/bin/python3 -m pip install --upgrade conan wheel
11+
RUN /usr/bin/python3 -m pip install --upgrade conan==1.* wheel
1212
RUN mv /usr/local/bin/conan /usr/local/bin/conan_
1313
COPY conan_workaround /usr/local/bin/conan
1414
RUN chmod +x /usr/local/bin/conan
15+
RUN conan profile new default --detect
1516
RUN conan remote add -f conancenter https://center.conan.io

src/pypdu/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.6a1
1+
0.1.6a2

0 commit comments

Comments
 (0)