Skip to content

Commit 6a3d0dd

Browse files
committed
Revert configs
1 parent 33b6613 commit 6a3d0dd

File tree

5 files changed

+3
-8
lines changed

5 files changed

+3
-8
lines changed

.github/workflows/python-package.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip
31-
python -m pip install --upgrade setuptools
3231
python -m pip install flake8 pytest
3332
pip install -r requirements.txt
34-
pip install . --use-feature=in-tree-build
3533
- name: Lint with flake8
3634
run: |
3735
# stop the build if there are Python syntax errors or undefined names

.github/workflows/python-publish.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
python -m pip install --upgrade setuptools
30-
pip install . --use-feature=in-tree-build
3129
pip install build
3230
- name: Build package
3331
run: python -m build

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ env:
1313
- CC_TEST_REPORTER_ID=48ee9103b2354a6b5c3028f4bc09a0705b79f27d013328a4234107ed385c16ec
1414
before_install:
1515
- pip3 install --upgrade pip
16-
- pip3 install --upgrade setuptools
1716
install:
1817
- pip install -r requirements.txt
1918
- pip install . --use-feature=in-tree-build

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = sqlalchemyseed
3-
version = 1.0.0
3+
version = attr: sqlalchemyseed.__version__
44
description = SQLAlchemy Seeder
55
long_description = file: README.md
66
long_description_content_type = text/markdown

src/sqlalchemyseed/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
from .loader import load_entities_from_json
2828
from .loader import load_entities_from_yaml
2929
from .loader import load_entities_from_csv
30-
import importlib.metadata as importlib_metadata
3130

32-
__version__ = importlib_metadata.version('sqlalchemyseed')
31+
32+
__version__ = "1.0.0"
3333

3434
if __name__ == '__main__':
3535
pass

0 commit comments

Comments
 (0)