Skip to content

Commit

Permalink
Removed unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavrth committed Oct 10, 2024
1 parent b272467 commit 44a4933
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ blocks:
- name: ARCH
value: x64
- name: CIBW_SKIP
value: cp36-* cp37-* cp-* cp38-* cp39-* cp310-* cp311-* cp312-*
value: cp36-* cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*
- name: CIBW_ENVIRONMENT_MACOS
value: MACOSX_DEPLOYMENT_TARGET=13
jobs:
Expand Down
2 changes: 1 addition & 1 deletion examples/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ uvicorn
six
pyrsistent==0.16.1;python_version<"3.0"
pyrsistent;python_version>"3.0"
jsonschema<4.18.0
jsonschema
protobuf
requests
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

JSON_REQUIRES = ['pyrsistent==0.16.1;python_version<"3.0"',
'pyrsistent;python_version>"3.0"',
'jsonschema<4.18.0'] + SCHEMA_REGISTRY_REQUIRES
'jsonschema'] + SCHEMA_REGISTRY_REQUIRES

PROTO_REQUIRES = ['protobuf'] + SCHEMA_REGISTRY_REQUIRES

Expand Down
2 changes: 1 addition & 1 deletion src/confluent_kafka/schema_registry/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
fastavro>=0.23.0
pyrsistent==0.16.1;python_version<"3.0"
pyrsistent;python_version>"3.0"
jsonschema<4.18.0 # Due to https://github.com/tfranzel/drf-spectacular/issues/1132
jsonschema
protobuf
requests
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ fastavro<1.8.0;python_version=="3.7"
fastavro>=1.8.4;python_version>"3.7"
fastavro
avro>=1.11.1,<2
jsonschema<4.18.0
jsonschema
protobuf
2 changes: 1 addition & 1 deletion tools/build-manylinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ fi
#

echo "# Installing basic system dependencies"
yum install -y zlib-devel gcc-c++ python3 curl-devel perl-IPC-Cmd perl-Pod-Html libffi-devel
yum install -y zlib-devel gcc-c++ python3 curl-devel perl-IPC-Cmd perl-Pod-Html

echo "# Building librdkafka ${LIBRDKAFKA_VERSION}"
$(dirname $0)/bootstrap-librdkafka.sh --require-ssl ${LIBRDKAFKA_VERSION} /usr
Expand Down
2 changes: 1 addition & 1 deletion tools/wheels/build-wheels.bat
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ echo on

set CIBW_BUILD=cp36-%BW_ARCH% cp37-%BW_ARCH% cp38-%BW_ARCH% cp39-%BW_ARCH% cp310-%BW_ARCH% cp311-%BW_ARCH% cp312-%BW_ARCH% cp313-%BW_ARCH%
set CIBW_BEFORE_BUILD=python -m pip install delvewheel==1.1.4
set CIBW_TEST_REQUIRES=-r tests/requirements.txt
set CIBW_TEST_REQUIRES=pytest
set CIBW_TEST_COMMAND=pytest {project}\tests\test_Producer.py
rem set CIBW_BUILD_VERBOSITY=3
set include=%cd%\%DEST%\build\native\include
Expand Down

0 comments on commit 44a4933

Please sign in to comment.