Skip to content

Commit

Permalink
Merge pull request #2 from dev2049/publish_2
Browse files Browse the repository at this point in the history
pub again
  • Loading branch information
dev2049 committed Jul 18, 2023
2 parents f0396d9 + 68b1ce0 commit d0c8f23
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: lint

on:
push:
branches: [master]
branches: [main]
pull_request:

env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types:
- closed
branches:
- master
- main
paths:
- 'pyproject.toml'

Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
draft: false
generateReleaseNotes: true
tag: v${{ steps.check-version.outputs.version }}
commit: master
commit: main
- name: Publish to PyPI
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: test

on:
push:
branches: [master]
branches: [main]
pull_request:
workflow_dispatch:

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain_sql_test"
version = "0.0.2"
version = "0.0.3"
description = ""
authors = ["Bagatur <[email protected]>"]
license = "MIT"
Expand Down
3 changes: 1 addition & 2 deletions tests/test_sqlalchemy.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import sqlalchemy

import langchain # noqa: F401
import sqlalchemy


def test_configure_mappers() -> None:
Expand Down

0 comments on commit d0c8f23

Please sign in to comment.