Skip to content

Commit

Permalink
Merge pull request #21 from argysamo/fix_action
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
argysamo authored Oct 11, 2021
2 parents 976a6d4 + b5f63ad commit 23c3b42
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/upload-to-pip.yml.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
name: Upload to PIP

on:
release:
types: [created]
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- master
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pyyaml[yaml]
PyYAML>=5.1
sqlalchemy
requests
bs4
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ def run_tests(self):
tests_require=['pytest'],
include_package_data=True,
install_requires=['sqlalchemy', 'requests', 'numpy', 'pandas', 'numexpr', 'geopy', 'Flask-SQLAlchemy',
'Flask', 'Flask-Caching', 'jinja2', 'pyyaml', 'records', 'psycopg2', 'click',
'Flask', 'Flask-Caching', 'jinja2', 'PyYAML==5.4.1', 'records', 'psycopg2', 'click',
'Flask-GoogleMaps==0.2.4', 'owlready2', 'pint', 'Werkzeug'
],
cmdclass={'test': PyTest, 'install': CustomInstall},
python_requires='>=3.3',
python_requires='>=3.6',
packages=find_packages(exclude=["tests.*", "tests"]),
author_email='[email protected]',
package_data={
Expand Down

0 comments on commit 23c3b42

Please sign in to comment.