Skip to content

Commit 3157bb2

Browse files
committed
Release 1.4.10
1 parent ecbe596 commit 3157bb2

File tree

8 files changed

+41
-25
lines changed

8 files changed

+41
-25
lines changed

AUTHORS.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
## Contributors to `easyaccess`
2-
This is an alphabetical list of contributors, if you feel you have contributed to the project and we have neglected adding you to the list please accept our apologizes and [let us know](mailto:mgckind@gmail.com) to correct it.
2+
3+
This is an alphabetical list of contributors, if you feel you have contributed to the project and we have neglected adding you to the list please accept our apologizes and [let us know](https://des.ncsa.illinois.edu/help) to correct it.
34

45
- Monika Adamow
56
- Matias Carrasco Kind
67
- Alex Drlica-Wagner
78
- Landon Gelman
9+
- Michael Johnson
810
- Audrey Koziol
11+
- T. Andrew Manning
912
- Donald Petravick
1013
- Eli Rykoff
1114
- Ignacio Sevilla
12-
- T. Andrew Manning

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changes
22

3+
## v.1.4.10
4+
#### 2022-MAY-28
5+
- Correct version inconsistency
6+
- Make requirements consistent between `setup.py` and `meta.yaml`
7+
- Change references to personal email addresses to the DES help request page
8+
39
## v.1.4.8
410
#### XXXX-XXX-XX
511
- Fix issues with hanging after a Oracle Error (#PR 173 and issue #130)

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
5555
## Enforcement
5656

5757
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58-
reported by contacting the project team at mgckind@gmail.com. All
58+
reported by contacting the project team at desaccess-admins@lists.ncsa.illinois.edu. All
5959
complaints will be reviewed and investigated and will result in a response that
6060
is deemed necessary and appropriate to the circumstances. The project team is
6161
obligated to maintain confidentiality with regard to the reporter of an incident.

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
When contributing to this repository, please first discuss the change you wish to make via [issues](https://github.com/des-labs/easyaccess/issues),
5-
[email](mailto:mgckind@gmail.com), or any other method with the owners of this repository before making a change.
5+
[DES help request form](https://des.ncsa.illinois.edu/help), or any other method with the owners of this repository before making a change.
66

77
Please note we have a [code of conduct](CODE_OF_CONDUCT.md) for this project, please follow it in all your interactions with the project.
88

@@ -35,6 +35,6 @@ All kind of contributions are welcome, from fixing bugs, resolving issues or sug
3535

3636
## Authors
3737

38-
Please see our [list of contributors](AUTHORS.md), if you feel you have contributed to the project and we have neglected adding you to the list please accept our apologizes and [let us know](mailto:mgckind@gmail.com) to correct it.
38+
Please see our [list of contributors](AUTHORS.md), if you feel you have contributed to the project and we have neglected adding you to the list please accept our apologizes and [let us know](https://des.ncsa.illinois.edu/help) to correct it.
3939

4040

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Loading metadata into cache...
9999
\\_______// DARK ENERGY SURVEY
100100
`-------` DATA MANAGEMENT
101101

102-
easyaccess 1.4.8-dev. The DESDM Database shell.
102+
easyaccess 1.4.10. The DESDM Database shell.
103103
_________
104104
DESDR ~> SELECT RA, DEC, MAG_AUTO_G, TILENAME FROM DR2_MAIN sample(0.001) FETCH FIRST 5 ROWS ONLY ;
105105

config/conda/meta.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package:
22
name: easyaccess
3-
version: "1.4.8"
3+
version: "1.4.10"
44

55
source:
6-
git_rev: 1.4.8
6+
git_rev: 1.4.10
77
git_url: https://github.com/des-labs/easyaccess.git
88

99
build:
@@ -17,27 +17,27 @@ build:
1717

1818
requirements:
1919
build:
20-
- python
21-
- future >=0.15.0
20+
- pandas >= 0.14
21+
- termcolor >= 1.1.0
22+
- fitsio == 1.0.5
23+
- cx_oracle == 8.0.1
24+
- numpy == 1.19.2
25+
- future >= 0.15.0
2226
- requests
23-
- pandas >=0.14
24-
- termcolor >=1.1.0
25-
- fitsio ==1.0.5
2627
- oracle-instantclient ==11.2.0.4.0
27-
- cx_oracle ==8.0.1
28-
- numpy ==1.19.2
28+
- python
2929
- python-dateutil
3030

3131
run:
32-
- python
33-
- future >=0.15.0
32+
- pandas >= 0.14
33+
- termcolor >= 1.1.0
34+
- fitsio == 1.0.5
35+
- cx_oracle == 8.0.1
36+
- numpy == 1.19.2
37+
- future >= 0.15.0
3438
- requests
35-
- pandas >=0.14
36-
- termcolor >=1.1.0
37-
- fitsio ==1.0.5
3839
- oracle-instantclient ==11.2.0.4.0
39-
- cx_oracle ==8.0.1
40-
- numpy ==1.19.2
40+
- python
4141
- python-dateutil
4242

4343
test:

easyaccess/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def last_pip_version():
2626
return sorted(uploads, key=lambda x: x[1])[-1][0]
2727

2828

29-
version_tag = (1, 4, 8, 'dev')
29+
version_tag = (1, 4, 10)
3030
__version__ = ".".join(map(str, version_tag[:3]))
3131

3232
if len(version_tag) > 3:

setup.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ def read(filename):
4444
long_description=read('README.md'),
4545
long_description_content_type='text/markdown',
4646
url='https://github.com/des-labs/easyaccess',
47-
install_requires=['pandas >= 0.14', 'termcolor', 'fitsio == 1.0.5', 'setuptools',
48-
'cx_Oracle == 8.0.1', 'numpy >= 1.19.2', 'future >= 0.15.0', 'requests'],
47+
install_requires=[
48+
'pandas >= 0.14',
49+
'termcolor',
50+
'fitsio == 1.0.5',
51+
'cx_Oracle == 8.0.1',
52+
'numpy >= 1.19.2',
53+
'future >= 0.15.0',
54+
'requests',
55+
'setuptools',
56+
],
4957
)

0 commit comments

Comments
 (0)