Skip to content

Commit

Permalink
Merge pull request #17 from nickpgill/master
Browse files Browse the repository at this point in the history
fixing build problem
  • Loading branch information
nickpgill authored Nov 27, 2024
2 parents 0d4df3e + 11bd33f commit a4d56e6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[tool.poetry]
name = "stratification-app"
version = "4.1.0"
version = "0.1.0"
description = ""
authors = ["Nick Gill <nick@sortitionfoundation.org>", "Brett Hennig <brett@sortitionfoundation.org>", "Paul Goelz <mail@paulgoelz.de>"]
authors = ["Nick Gill <nick@sortitionfoundation.org>\", \"Brett Hennig <brett@sortitionfoundation.org>\", \"Paul Goelz <mail@paulgoelz.de>"]
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.11,<3.13"
eel = "^0.17.0"
cvxpy = "^1.5.3"
gspread = "^6.1.2"
Eel = "^0.17.0"
cvxpy = "^1.6.0"
gspread = "^6.1.4"
mip = "^1.15.0"
toml = "^0.10.2"
oauth2client = "^4.1.3"
pyinstaller = "^6.10.0"
pyinstaller = "^6.11.1"


[build-system]
Expand Down
1 change: 1 addition & 0 deletions script.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from io import StringIO

import eel
import gspread

from stratification import (
PeopleAndCatsCSV,
Expand Down
2 changes: 1 addition & 1 deletion stratification.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ def load_cats(self, g_sheet_name, category_tab_name, settings: Settings):
if self._tab_exists(self.category_tab_name):
tab_cats = self.spreadsheet.worksheet(self.category_tab_name)
cat_head_input = tab_cats.row_values(1)
cat_input = tab_cats.get_all_records()
cat_input = tab_cats.get_all_records(expected_headers=[])
new_msg, min_val, max_val = self._read_in_cats(cat_head_input, cat_input)
msg += ["Read in '{}' tab in above Google sheet.".format(self.category_tab_name)]
msg += new_msg
Expand Down

0 comments on commit a4d56e6

Please sign in to comment.