Skip to content

Commit 537f87f

Browse files
committed
Merge branch 'dev' into prep_release
2 parents 18bab7c + 9ef9151 commit 537f87f

File tree

8 files changed

+84
-6
lines changed

8 files changed

+84
-6
lines changed

.github/workflows/cicd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: stac-fastapi-nosql
22
on:
33
push:
4-
branches: [ main ]
4+
branches: [ main, dev ]
55
pull_request:
6-
branches: [ main ]
6+
branches: [ main, dev ]
77

88
jobs:
99
test:

.github/workflows/publish-to-pypi.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Publish Python distributions to PyPI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-n-publish:
10+
name: Build and publish Python distributions to PyPI and TestPyPI
11+
runs-on: ubuntu-18.04
12+
13+
steps:
14+
- uses: actions/checkout@master
15+
- name: Set up Python 3.8
16+
uses: actions/setup-python@v1
17+
with:
18+
python-version: 3.8
19+
20+
- name: Install pypa/build
21+
run: >-
22+
python -m
23+
pip install
24+
build
25+
--user
26+
- name: Build a binary wheel and a source tarball
27+
run: >-
28+
python -m
29+
build
30+
--sdist
31+
--wheel
32+
--outdir dist/
33+
stac_fastapi/mongo
34+
- name: Publish distribution to PyPI
35+
# if: startsWith(github.ref, 'refs/tags')
36+
uses: pypa/gh-action-pypi-publish@v1.4.2
37+
with:
38+
password: ${{ secrets.PYPI_API_TOKEN }}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Publish Python distributions to PyPI
2+
3+
on:
4+
push:
5+
branches:
6+
- dev
7+
8+
jobs:
9+
build-n-publish:
10+
name: Build and publish Python distributions to PyPI and TestPyPI
11+
runs-on: ubuntu-18.04
12+
13+
steps:
14+
- uses: actions/checkout@master
15+
- name: Set up Python 3.8
16+
uses: actions/setup-python@v1
17+
with:
18+
python-version: 3.8
19+
20+
- name: Install pypa/build
21+
run: >-
22+
python -m
23+
pip install
24+
build
25+
--user
26+
- name: Build a binary wheel and a source tarball
27+
run: >-
28+
python -m
29+
build
30+
--sdist
31+
--wheel
32+
--outdir dist/
33+
stac_fastapi/mongo
34+
- name: Publish distribution to Test PyPI
35+
# if: startsWith(github.ref, 'refs/tags')
36+
uses: pypa/gh-action-pypi-publish@v1.4.2
37+
with:
38+
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
39+
repository_url: https://test.pypi.org/legacy/

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.3.0

stac_fastapi/elasticsearch/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
keywords="STAC FastAPI COG",
4949
author=u"Arturo Engineering",
5050
author_email="engineering@arturo.ai",
51-
url="https://github.com/stac-utils/stac-fastapi",
51+
url="https://github.com/jonhealy1/stac-fastapi-nosql",
5252
license="MIT",
5353
packages=find_namespace_packages(exclude=["alembic", "tests", "scripts"]),
5454
zip_safe=False,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "2.1.1"
2+
__version__ = "2.3.0"

stac_fastapi/mongo/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
keywords="STAC FastAPI COG",
4848
author=u"Arturo Engineering",
4949
author_email="engineering@arturo.ai",
50-
url="https://github.com/stac-utils/stac-fastapi",
50+
url="https://github.com/jonhealy1/stac-fastapi-nosql",
5151
license="MIT",
5252
packages=find_namespace_packages(exclude=["alembic", "tests", "scripts"]),
5353
zip_safe=False,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "2.1.1"
2+
__version__ = "2.3.0"

0 commit comments

Comments
 (0)