Skip to content

Commit 989d8cb

Browse files
Cron schedule (#21)
1 parent 71c5ad0 commit 989d8cb

File tree

15 files changed

+27
-20
lines changed

15 files changed

+27
-20
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ on:
77
pull_request:
88
branches:
99
- master
10+
schedule:
11+
- cron: '00 12 * * 1' # Runs every Monday at 8:00 AM EST
1012

1113
jobs:
1214
Test:
13-
runs-on: ubuntu-latest
15+
runs-on: ${{ matrix.os }}
1416
strategy:
1517
matrix:
16-
python-version: [3.6, 3.7, 3.8, 3.9]
18+
python-version: ["3.7", "3.8", "3.9", "3.10"]
19+
os: [ubuntu-latest, macos-latest, windows-latest]
1720
steps:
1821
- uses: actions/checkout@v2
1922
- name: Set up Python ${{ matrix.python-version }}

CHANGELOG.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
CHANGELOG
33
=========
44

5+
-------------------------------------------------------------------------------
6+
April 21, 2023 1.3.3
7+
-------------------------------------------------------------------------------
8+
9+
- Fixed Pandas deprecated function.
10+
511
-------------------------------------------------------------------------------
612
Feb 09, 2022 1.3.2
713
-------------------------------------------------------------------------------

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ print('F1 score is', f1_score.get_score(predictions, labels))
151151

152152
## Installation
153153

154-
Jurity requires **Python 3.6+** and can be installed from PyPI using ``pip install jurity`` or by building from source as shown in [installation instructions](https://fidelity.github.io/jurity/installation.html).
154+
Jurity requires **Python 3.7+** and can be installed from PyPI using ``pip install jurity`` or by building from source as shown in [installation instructions](https://fidelity.github.io/jurity/install.html).
155155

156156
## Support
157157
Please submit bug reports and feature requests as [Issues](https://github.com/fidelity/jurity/issues).

docs/_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var DOCUMENTATION_OPTIONS = {
22
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
3-
VERSION: '1.3.2',
3+
VERSION: '1.3.3',
44
LANGUAGE: 'None',
55
COLLAPSE_INDEX: false,
66
BUILDER: 'html',

docs/about_fairness.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>About Algorithmic Fairness &mdash; Jurity 1.3.2 documentation</title>
7+
<title>About Algorithmic Fairness &mdash; Jurity 1.3.3 documentation</title>
88
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
1010
<!--[if lt IE 9]>

docs/about_reco.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>About Recommenders Metrics &mdash; Jurity 1.3.2 documentation</title>
7+
<title>About Recommenders Metrics &mdash; Jurity 1.3.3 documentation</title>
88
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
1010
<!--[if lt IE 9]>

docs/api.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Jurity Public API &mdash; Jurity 1.3.2 documentation</title>
7+
<title>Jurity Public API &mdash; Jurity 1.3.3 documentation</title>
88
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
1010
<!--[if lt IE 9]>

docs/genindex.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Index &mdash; Jurity 1.3.2 documentation</title>
6+
<title>Index &mdash; Jurity 1.3.3 documentation</title>
77
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
88
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
99
<!--[if lt IE 9]>

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Jurity: Fairness &amp; Evaluation Library &mdash; Jurity 1.3.2 documentation</title>
7+
<title>Jurity: Fairness &amp; Evaluation Library &mdash; Jurity 1.3.3 documentation</title>
88
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
1010
<!--[if lt IE 9]>

docs/install.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Installation &mdash; Jurity 1.3.2 documentation</title>
7+
<title>Installation &mdash; Jurity 1.3.3 documentation</title>
88
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
99
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
1010
<!--[if lt IE 9]>

0 commit comments

Comments
 (0)