Skip to content

Commit

Permalink
Merge pull request #66 from ImageMarkup/add-py312-support
Browse files Browse the repository at this point in the history
  • Loading branch information
danlamanna authored Nov 14, 2023
2 parents db5cb1d + 50a730d commit fafd54b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ ubuntu-latest, windows-latest ]
steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions isic_cli/cli/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,13 @@ def download(
click.echo()
click.secho(f"Successfully downloaded {nice_num_images} images to {outdir}/.", fg="green")
click.secho(
f'Successfully wrote {nice_num_images} metadata records to {outdir/"metadata.csv"}.',
f'Successfully wrote {nice_num_images} metadata records to {outdir / "metadata.csv"}.',
fg="green",
)
click.secho(
f'Successfully wrote attributions to {outdir/"attribution.txt"}.',
f'Successfully wrote attributions to {outdir / "attribution.txt"}.',
fg="green",
)
click.secho(
f'Successfully wrote {len(licenses)} license(s) to {outdir/"licenses"}.', fg="green"
f'Successfully wrote {len(licenses)} license(s) to {outdir / "licenses"}.', fg="green"
)
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
],
python_requires=">=3.9",
Expand Down

0 comments on commit fafd54b

Please sign in to comment.