Skip to content

Commit acb84ab

Browse files
authored
Merge pull request #6 from eclipse-volttron/main
Sync develop from main
2 parents b38843f + e1303ce commit acb84ab

File tree

3 files changed

+43
-24
lines changed

3 files changed

+43
-24
lines changed

.copier-answers.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
# Documentation located
3+
# https://github.com/marketplace/actions/publish-python-poetry-package
4+
name: Dispatch to PyPi
5+
6+
on:
7+
workflow_dispatch:
8+
9+
defaults:
10+
run:
11+
shell: bash
12+
13+
env:
14+
LANG: en_US.utf-8
15+
LC_ALL: en_US.utf-8
16+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
17+
18+
jobs:
19+
20+
publish_to_pypi:
21+
22+
runs-on: ubuntu-22.04
23+
24+
steps:
25+
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
26+
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
27+
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
28+
29+
- name: Checkout code
30+
uses: actions/checkout@v2
31+
32+
- name: Build and publish to pypi
33+
uses: JRubics/[email protected]
34+
with:
35+
# These are only needed when using test.pypi
36+
#repository_name: testpypi
37+
#repository_url: https://test.pypi.org/legacy/
38+
pypi_token: ${{ secrets.PYPI_TOKEN }}
39+
ignore_dev_requirements: "yes"

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ toml = ">=0.10.2"
88

99
[tool.poetry]
1010
name = "volttron-lib-sql-historian"
11-
version = "0.1.0"
12-
description = "None"
13-
authors = ["VOLTTRON <[email protected]>"]
11+
version = "0.2.0-rc"
12+
description = "A library for supporting sql based historians."
13+
authors = ["VOLTTRON Team <[email protected]>"]
1414
license = "Apache License 2.0"
1515
readme = "README.md"
1616
repository = "https://github.com/eclipse-volttron/volttron-lib-sql-historian"
@@ -20,7 +20,7 @@ packages = [ { include = "historian", from = "src" } ]
2020

2121
[tool.poetry.dependencies]
2222
python = ">=3.8,<4.0"
23-
volttron-lib-base-historian = "^0.1.1a4"
23+
volttron-lib-base-historian = "^0.2.0rc0"
2424

2525
[tool.poetry.group.dev.dependencies]
2626
pytest = "^6.2.5"

0 commit comments

Comments
 (0)