Skip to content

Commit 57099b8

Browse files
Bump requests to >=2.33.0 (security) and release 1.0.12.1 (#25)
* minor fixes * minor fixes * minor fixes
1 parent 15c208b commit 57099b8

6 files changed

Lines changed: 35 additions & 13 deletions

File tree

.github/workflows/publish-test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: publish-test
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-python@v5
13+
with:
14+
python-version: "3.x"
15+
- name: Install build dependencies
16+
run: pip install build
17+
- name: Build sdist and wheel
18+
run: python -m build
19+
- uses: actions/upload-artifact@v4
20+
with:
21+
name: dist
22+
path: dist/
21.2 KB
Binary file not shown.

dist/syncsketch-1.0.12.1.tar.gz

35.3 KB
Binary file not shown.

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="syncsketch",
13-
version="1.0.12.0",
13+
version="1.0.12.1",
1414
description="SyncSketch Python API",
1515
author_email="support@syncsketch.com",
1616
classifiers=[
@@ -37,9 +37,9 @@
3737
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
3838
install_requires=[
3939
'requests>=2.20.0,<2.28; python_version < "3.0"',
40-
'requests>=2.20.0; python_version >= "3.7" and python_version < "3.9"',
41-
'requests>=2.32.0; python_version >= "3.9"',
42-
'urllib3>=2.6.3; python_version >= "3.9"',
40+
'requests>=2.20.0; python_version >= "3.7" and python_version <= "3.9"',
41+
'requests>=2.33.0; python_version > "3.9"',
42+
'urllib3>=2.6.3; python_version > "3.9"',
4343
],
4444
extras_require={
4545
"test": [

syncsketch.egg-info/PKG-INFO

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.4
22
Name: syncsketch
3-
Version: 1.0.12.0
3+
Version: 1.0.12.1
44
Summary: SyncSketch Python API
55
Home-page: https://github.com/syncsketch/python-api
66
Author-email: support@syncsketch.com
@@ -23,9 +23,9 @@ Requires-Python: >=2.7, <3.15
2323
Description-Content-Type: text/markdown
2424
License-File: LICENSE
2525
Requires-Dist: requests<2.28,>=2.20.0; python_version < "3.0"
26-
Requires-Dist: requests>=2.20.0; python_version >= "3.7" and python_version < "3.9"
27-
Requires-Dist: requests>=2.32.0; python_version >= "3.9"
28-
Requires-Dist: urllib3>=2.6.3; python_version >= "3.9"
26+
Requires-Dist: requests>=2.20.0; python_version >= "3.7" and python_version <= "3.9"
27+
Requires-Dist: requests>=2.33.0; python_version > "3.9"
28+
Requires-Dist: urllib3>=2.6.3; python_version > "3.9"
2929
Provides-Extra: test
3030
Requires-Dist: pytest<10.0,>=7.0; extra == "test"
3131
Requires-Dist: pytest-cov>=4.0; extra == "test"

syncsketch.egg-info/requires.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
[:python_version < "3.0"]
33
requests<2.28,>=2.20.0
44

5-
[:python_version >= "3.7" and python_version < "3.9"]
6-
requests>=2.20.0
7-
8-
[:python_version >= "3.9"]
9-
requests>=2.32.0
5+
[:python_version > "3.9"]
6+
requests>=2.33.0
107
urllib3>=2.6.3
118

9+
[:python_version >= "3.7" and python_version <= "3.9"]
10+
requests>=2.20.0
11+
1212
[test]
1313
pytest<10.0,>=7.0
1414
pytest-cov>=4.0

0 commit comments

Comments
 (0)