Skip to content

Commit

Permalink
Merge branch 'main' into proj-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
jsignell committed Dec 11, 2023
2 parents 839dadd + 0e6a8e6 commit af05d17
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
Expand All @@ -59,7 +59,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python 3.9
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "pip"
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
Expand All @@ -125,7 +125,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"

Expand All @@ -143,7 +143,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "pip"
Expand All @@ -158,7 +158,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "pip"
Expand All @@ -173,7 +173,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "pip"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python 3.x
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.x"

Expand Down
2 changes: 2 additions & 0 deletions docs/concepts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ for reading from AWS's S3 cloud object storage using `boto3
import boto3
from pystac import Link
from pystac.stac_io import DefaultStacIO, StacIO
from typing import Union, Any
class CustomStacIO(DefaultStacIO):
def __init__(self):
Expand Down Expand Up @@ -345,6 +346,7 @@ to take advantage of connection pooling using a `requests.Session
from urllib.parse import urlparse
import requests
from pystac.stac_io import DefaultStacIO, StacIO
from typing import Union, Any
class ConnectionPoolingIO(DefaultStacIO):
def __init__(self):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ test = [
"pytest-recording~=0.13.0",
"pytest~=7.3",
"requests-mock~=1.11",
"ruff==0.1.6",
"ruff==0.1.7",
"types-html5lib~=1.1",
"types-orjson~=3.6",
"types-jsonschema~=4.18",
Expand Down

0 comments on commit af05d17

Please sign in to comment.