Skip to content

Commit

Permalink
v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
John Major committed Oct 29, 2023
1 parent f425757 commit e33d222
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 9 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Python CI

on: [push]

jobs:
test:

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10.0

- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run pytest
run: |
pytest
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src=zebra_day/imgs/bar_red.png>

## zebra_day Overview [v0.2.0](https://github.com/Daylily-Informatics/zebra_day/releases/tag/v0.2.0)
## zebra_day Overview [v0.2.1](https://github.com/Daylily-Informatics/zebra_day/releases/tag/v0.2.1)

<ul>

Expand Down
7 changes: 7 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
pytest==7.4.3
cherrypy==18.8.0
ipython==8.16.1
pytest==7.4.3
pytz==2023.3.post1
requests
yaml-config-day==0.0.5
10 changes: 2 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,13 @@

setup(
name='zebra_day',
version='0.2.0',
version='0.2.1',
description='A Python library to manage a zebra printer fleet and an api for ZPL print requests.',
author='John Major',
author_email='john@daylilyinformatics.com',
url='https://github.com/Daylily-Informatics/zebra_day',
packages=find_packages(),
install_requires=[
'yaml_config_day',
'requests',
'pytz',
'cherrypy',
'ipython'
],
install_requires=["yaml_config_day==0.0.5", "requests", "pytz==2023.3.post1", "cherrypy==18.8.0", "ipython==8.16.1", "pytest"],
include_package_data=True,
package_data={
'zebra_day': [
Expand Down

0 comments on commit e33d222

Please sign in to comment.