File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 22
22
- name : Create distributions
23
23
run : make dist
24
24
- name : Publish a Python distribution to PyPI
25
- uses : pypa/gh-action-pypi-publish@release/v1.9
25
+ uses : pypa/gh-action-pypi-publish@release/v1
26
26
with :
27
27
user : __token__
28
28
password : ${{ secrets.PYPI_TOKEN }}
Original file line number Diff line number Diff line change 18
18
19
19
20
20
dependencies = [
21
- 'yhttp >= 6.2 , < 7 ' ,
22
- 'yhttp-dbmanager >= 5 .0.1 , < 6 ' ,
21
+ 'yhttp >= 7.0.1 , < 8 ' ,
22
+ 'yhttp-dbmanager >= 6 .0.2 , < 7 ' ,
23
23
'sqlalchemy >= 2.0.32' ,
24
24
]
25
25
Original file line number Diff line number Diff line change 9
9
10
10
@pytest .fixture
11
11
def app (freshdb ):
12
- app = Application ()
12
+ app = Application ('0.1.0' , 'foo' )
13
13
app .settings .merge (f'''
14
14
db:
15
15
url: { freshdb }
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class Foo(BaseModel):
41
41
_pass = os .environ .get ('YHTTP_DB_DEFAULT_PASS' , 'postgres' if CICD else '' )
42
42
43
43
44
- app = Application ()
44
+ app = Application ('0.1.0' , 'foo' )
45
45
app .settings .merge (f'''
46
46
db:
47
47
url: postgresql://{ _user } :{ _pass } @{ _host } /foo
Original file line number Diff line number Diff line change 1
1
from .install import install
2
2
3
3
4
- __version__ = '3 .0.0'
4
+ __version__ = '4 .0.0'
You can’t perform that action at this time.
0 commit comments