Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.
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 .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Python 3",
"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye",
"image": "mcr.microsoft.com/devcontainers/python:1-3.8-bullseye",
"features": {
"ghcr.io/itsmechlark/features/act:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-python@v5
with:
python-version: "3.x"
python-version: "3.8"
if: ${{ steps.release.outputs.release_created }}
- name: Install dependencies
if: ${{ steps.release.outputs.release_created }}
Expand Down
Binary file removed __pycache__/setup.cpython-311-pytest-7.4.3.pyc
Binary file not shown.
25 changes: 10 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,27 +42,22 @@
"passageidentity.openapi_client.models": "passageidentity/openapi_client/models",
},
install_requires=[
"aenum",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this didn't seem to be used at all

"cryptography",
'importlib-metadata >= 1.0 ; python_version < "3.12"',
"pydantic",
"pyjwt",
"python-dateutil",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pip list will show that the following are still installed without them being explicitly listed here:

python-dateutil
typing_extensions
urllib3

"requests",
"typing_extensions >= 4.7.1",
"urllib3 >= 1.25.3, < 2.1.0",
"cryptography ~= 44.0", # used by pyjwt
"pydantic ~= 2.10", # used by codgen
"pyjwt ~= 2.9",
"requests ~= 2.32",
],
extras_require={
"dev": [
"pytest",
"python-dotenv",
"faker",
"build",
"ruff",
"pytest ~= 8.3",
"python-dotenv ~= 1.0",
"faker ~= 33.1",
"build ~= 1.2",
"ruff ~= 0.8",
],
},
setup_requires=["pytest-runner"],
tests_require=["pytest"],
test_suite="tests",
python_requires=">=3.7",
python_requires=">=3.8",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i originally tried setting everything to work with 3.7 but there's such a massive difference with dependency support that it was a big headache. our use of importlib-metadata also doesn't even work with 3.7 so i figured no one is using our package with that version.

)
Loading