ygrader 1.1.26__tar.gz → 1.1.27__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ygrader-1.1.26/ygrader.egg-info → ygrader-1.1.27}/PKG-INFO +1 -1
- {ygrader-1.1.26 → ygrader-1.1.27}/setup.py +1 -1
- {ygrader-1.1.26 → ygrader-1.1.27}/ygrader/grades_csv.py +0 -3
- {ygrader-1.1.26 → ygrader-1.1.27/ygrader.egg-info}/PKG-INFO +1 -1
- {ygrader-1.1.26 → ygrader-1.1.27}/LICENSE +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/setup.cfg +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/test/test_interactive.py +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/test/test_unittest.py +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/ygrader/__init__.py +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/ygrader/grader.py +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/ygrader/grading_item.py +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/ygrader/student_repos.py +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/ygrader/upstream_merger.py +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/ygrader/utils.py +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/ygrader.egg-info/SOURCES.txt +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/ygrader.egg-info/dependency_links.txt +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/ygrader.egg-info/requires.txt +0 -0
- {ygrader-1.1.26 → ygrader-1.1.27}/ygrader.egg-info/top_level.txt +0 -0
|
@@ -3,7 +3,7 @@ from setuptools import setup
|
|
|
3
3
|
setup(
|
|
4
4
|
name="ygrader",
|
|
5
5
|
packages=["ygrader"],
|
|
6
|
-
version="1.1.
|
|
6
|
+
version="1.1.27",
|
|
7
7
|
description="Grading scripts used in BYU's Electrical and Computer Engineering Department",
|
|
8
8
|
author="Jeff Goeders",
|
|
9
9
|
author_email="jeff.goeders@gmail.com",
|
|
@@ -69,9 +69,6 @@ def match_to_github_url(
|
|
|
69
69
|
# Rename appropriate column to github url
|
|
70
70
|
df_github.rename(columns={github_csv_col_name: "github_url"}, inplace=True)
|
|
71
71
|
|
|
72
|
-
print(df_needs_grade)
|
|
73
|
-
print(df_github)
|
|
74
|
-
|
|
75
72
|
# Missing from github CSV - Find Net IDs in df_needs_grade that are not in df_github
|
|
76
73
|
missing_netids = df_needs_grade[~df_needs_grade["Net ID"].isin(df_github["Net ID"])]
|
|
77
74
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|