Skip to content

Commit 24ae99e

Browse files
committed
updated imports and bug fixes
1 parent 1a96a84 commit 24ae99e

3 files changed

Lines changed: 27 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55

66
---
77

8+
## [1.1.1]
9+
10+
### Fixed
11+
- Fixed SDK import paths in `_sub_sdk_map` - changed from `Fastpix.*` to `fastpix_python.*` to resolve `ModuleNotFoundError` for end users
12+
- Fixed all documentation examples - removed unnecessary `sys.path.append()` statements
13+
- Updated method name from `create_from_url` to `create_media` in examples
14+
15+
### Improved
16+
- All SDK documentation examples now work out-of-the-box without workarounds
17+
- Consistent import statements across all documentation files
18+
819
## [1.1.0]
920

1021
### Fixed

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
[project]
22
name = "fastpix_python"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "Python Client SDK Generated by fastpix."
5-
authors = [{ name = "fastpix" }]
5+
authors = [
6+
{ name = "FastPix", email = "devs@fastpix.io" }
7+
]
68
readme = "README.md"
9+
license = { text = "Apache-2.0" }
710
requires-python = ">=3.9.2"
811
dependencies = [
912
"httpcore >=1.0.9",

setup.py

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,18 @@
55

66
setup(
77
name="fastpix_python",
8-
version="1.0.3",
8+
version="1.1.1",
99
packages=find_packages(),
1010
install_requires=[
11-
"requests>=2.25.0",
11+
"httpcore>=1.0.9",
12+
"httpx>=0.28.1",
13+
"pydantic>=2.11.2",
1214
],
13-
extras_require={
14-
'async': [
15-
'aiohttp>=3.8.0',
16-
]
17-
},
18-
description="FastPix SDK with both sync and async support",
15+
description="Python Client SDK Generated by fastpix.",
1916
long_description=long_description,
2017
long_description_content_type="text/markdown",
2118
author="FastPix",
22-
author_email="dev@fastpix.io",
19+
author_email="devs@fastpix.io",
2320
url="https://github.com/FastPix/fastpix-python",
2421
project_urls={
2522
"GitHub": "https://github.com/FastPix/fastpix-python",
@@ -29,11 +26,12 @@
2926
classifiers=[
3027
"Development Status :: 3 - Alpha",
3128
"Intended Audience :: Developers",
32-
"License :: OSI Approved :: MIT License",
29+
"License :: OSI Approved :: Apache Software License",
3330
"Programming Language :: Python :: 3",
34-
"Programming Language :: Python :: 3.7",
35-
"Programming Language :: Python :: 3.8",
3631
"Programming Language :: Python :: 3.9",
32+
"Programming Language :: Python :: 3.10",
33+
"Programming Language :: Python :: 3.11",
34+
"Programming Language :: Python :: 3.12",
3735
],
38-
python_requires=">=3.7",
36+
python_requires=">=3.9.2",
3937
)

0 commit comments

Comments
 (0)