2 Commits

Author SHA1 Message Date
Salad Dais
0c0de2bcbc v0.7.1 2021-09-04 07:27:20 +00:00
Salad Dais
9f2d2f2194 Pin recordclass version, use requirements.txt for windows build
recordclass had some breaking changes in 0.15
2021-09-04 07:12:45 +00:00
3 changed files with 4 additions and 3 deletions

View File

@@ -29,6 +29,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
pip install cx_freeze

View File

@@ -25,7 +25,7 @@ from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
version = '0.7.0'
version = '0.7.1'
with open(path.join(here, 'README.md')) as readme_fh:
readme = readme_fh.read()
@@ -82,7 +82,7 @@ setup(
'llbase>=1.2.5',
'defusedxml',
'aiohttp<4.0.0',
'recordclass',
'recordclass<0.15',
'lazy-object-proxy',
'arpeggio',
# requests breaks with newer idna

View File

@@ -112,7 +112,7 @@ executables = [
setup(
name="hippolyzer_gui",
version="0.7.0",
version="0.7.1",
description="Hippolyzer GUI",
options=options,
executables=executables,