Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/maintenance-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.10'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.10'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']
python-version: ['3.10', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.10'

- name: Configure Git
run: |
Expand Down Expand Up @@ -218,10 +218,10 @@ jobs:
run: |
git pull origin master

- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.10'

- name: Install dependencies
run: |
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.10'

- name: Download artifacts
uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ A comprehensive Python client library for the Etsy API v3, providing a modern, t

## Requirements

- Python 3.8 or higher
- Python 3.10 or higher
- An Etsy App API Key (get one at [Etsy Developers](https://www.etsy.com/developers))

## Installation
Expand Down
2 changes: 1 addition & 1 deletion docs/plans/2026-02-28-maintenance-workflow-plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

**Architecture:** Three Python scripts (`fetch_spec.py`, `diff_spec.py`, `audit_sdk.py`) provide the core logic. A pytest test suite covers live API integration. Three Claude Code skills (`/maintain:check`, `/maintain:audit`, `/maintain:test`) orchestrate these tools conversationally. `/maintain:audit` is a full pipeline — it runs the audit script, then Claude Code verifies findings against actual code, prepares a categorized change list, and asks the user whether to implement directly or adjust items first. A `specs/` directory stores baseline and latest OAS specs.

**Tech Stack:** Python 3.8+, requests (already a dependency), pytest, python-dotenv
**Tech Stack:** Python 3.10+, requests (already a dependency), pytest, python-dotenv

**Design doc:** `docs/plans/2026-02-28-maintenance-workflow-design.md`

Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,16 @@ def read_version():
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(exclude=["tests", "tests.*"]),
python_requires=">=3.10",
Comment thread
amitray007 marked this conversation as resolved.
install_requires=["requests", "requests-oauthlib"],
keywords=["python", "etsy", "api"],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
Expand Down
Loading