File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 82
82
echo version=$(python -c'import geojson_pydantic; print(geojson_pydantic.__version__)') >> $GITHUB_OUTPUT
83
83
84
84
- name : Build and publish
85
- if : steps.tag.outputs.tag == steps.module.outputs.version
85
+ if : ${{ steps.tag.outputs.version }} == ${{ steps.module.outputs.version}}
86
86
env :
87
87
FLIT_USERNAME : ${{ secrets.PYPI_USERNAME }}
88
88
FLIT_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ jobs:
19
19
- name : Checkout main
20
20
uses : actions/checkout@v2
21
21
22
- - name : Set up Python 3.8
22
+ - name : Set up Python 3.9
23
23
uses : actions/setup-python@v2
24
24
with :
25
- python-version : 3.8
25
+ python-version : 3.9
26
26
27
27
- name : Install dependencies
28
28
run : |
Original file line number Diff line number Diff line change 11
11
Polygon ,
12
12
)
13
13
14
- __version__ = "1.1.2 "
14
+ __version__ = "1.2.0 "
15
15
16
16
__all__ = [
17
17
"Feature" ,
Original file line number Diff line number Diff line change 2
2
name = " geojson-pydantic"
3
3
description = " Pydantic data models for the GeoJSON spec."
4
4
readme = " README.md"
5
- requires-python = " >=3.8 "
5
+ requires-python = " >=3.9 "
6
6
license = {file = " LICENSE" }
7
7
authors = [
8
8
{
name =
" Drew Bollinger" ,
email =
" [email protected] " },
@@ -100,7 +100,7 @@ ignore = [
100
100
"tests/*.py" = [" D1" ]
101
101
102
102
[tool .bumpversion ]
103
- current_version = " 1.1.2 "
103
+ current_version = " 1.2.0 "
104
104
105
105
search = " {current_version}"
106
106
replace = " {new_version}"
You can’t perform that action at this time.
0 commit comments