Skip to content

Commit 9e38ff0

Browse files
committed
Update name, branch, version, drop Py2
1 parent 2b65be4 commit 9e38ff0

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Nils Leif Fischer
3+
Copyright (c) 2020 Nils L. Vu
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

2-
<p align="center" id="banner"><img src="https://raw.githubusercontent.com/nilsleiffischer/gwpv/master/docs/banner.png"></p>
2+
<p align="center" id="banner"><img src="https://raw.githubusercontent.com/nilsvu/gwpv/develop/docs/banner.png"></p>
33

44
# gwpv
55

6-
![Tests](https://github.com/nilsleiffischer/gwpv/workflows/Tests/badge.svg)
6+
![Tests](https://github.com/nilsvu/gwpv/workflows/Tests/badge.svg)
77

88
This Python package uses the [ParaView](https://www.paraview.org) scientific
99
visualization toolkit to produce 3D renderings of gravitational-wave data from a
@@ -260,7 +260,7 @@ Here's a few images and movies produces with this software package:
260260

261261
[![GW190412 FaceOnMerger](https://www.aei.mpg.de/227073/original-1587395661.png?t=eyJ3aWR0aCI6MTQwMCwib2JqX2lkIjoyMjcwNzN9--45aa9ab2a4999dd95f6ee31c64e7ddc7d58a5d04)](https://dcc.ligo.org/public/0167/G2000575/005/FaceOnMerger_frame_watermarked.png)
262262

263-
- Source: [nilsleiffischer/gw190412-movie](https://github.com/nilsleiffischer/gw190412-movie)
263+
- Source: [nilsvu/gw190412-movie](https://github.com/nilsvu/gw190412-movie)
264264
- More information and images available at: https://www.aei.mpg.de/214403/gw190412-binary-black-hole-merger and https://dcc.ligo.org/LIGO-G2000575/public
265265
- Video:
266266

@@ -281,7 +281,7 @@ Here's a few images and movies produces with this software package:
281281

282282
[![GW190814 PanoramaAllModesFaceOn_frame.000006](https://www.aei.mpg.de/267796/original-1591184221.jpg?t=eyJ3aWR0aCI6MTQwMCwib2JqX2lkIjoyNjc3OTZ9--69dbd93a412c6aa07f6949dfcad5a0545daff82b)](https://dcc.ligo.org/DocDB/0168/G2000730/003/PanoramaAllModesFaceOn_frame.000006_watermarked.png)
283283

284-
- Source: [nilsleiffischer/gw190814-movie](https://github.com/nilsleiffischer/gw190814-movie)
284+
- Source: [nilsvu/gw190814-movie](https://github.com/nilsvu/gw190814-movie)
285285
- More information and images available at: https://www.aei.mpg.de/263744/gw190814 and https://dcc.ligo.org/LIGO-G2000730/public
286286
- Video:
287287

@@ -299,7 +299,7 @@ Here's a few images and movies produces with this software package:
299299

300300
[![GW190521 Serene](https://www.aei.mpg.de/501695/original-1599048019.jpg?t=eyJ3aWR0aCI6MTQwMCwib2JqX2lkIjo1MDE2OTV9--f9bb06569d1376477a9318d80930e8912c9568b1)](https://dcc.ligo.org/public/0169/G2001282/001/Serene_frame.000003_watermarked.png)
301301

302-
- Source: [nilsleiffischer/gw190521-movie](https://github.com/nilsleiffischer/gw190521-movie)
302+
- Source: [nilsvu/gw190521-movie](https://github.com/nilsvu/gw190521-movie)
303303
- More information and images available at: https://www.aei.mpg.de/500856/gw190521 and https://dcc.ligo.org/LIGO-G2001282/public
304304
- Video:
305305

@@ -315,6 +315,6 @@ Here's a few images and movies produces with this software package:
315315
This code is distributed under the MIT license. Please see the
316316
[`LICENSE`](LICENSE) for details. When you use code from this project or
317317
publish media produced by this code, please include a reference back to the
318-
[nilsleiffischer/gwpv](https://github.com/nilsleiffischer/gwpv) repository.
318+
[nilsvu/gwpv](https://github.com/nilsvu/gwpv) repository.
319319

320-
Copyright (c) 2020 Nils Leif Fischer
320+
Copyright (c) 2020 Nils L. Vu

setup.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
setup(
99
name='gwpv',
10-
version='0.2.0',
10+
version='0.3.0',
1111
description="Visualize gravitational waves with ParaView",
12-
author="Nils L. Fischer",
13-
author_email="nils.fischer@aei.mpg.de",
14-
url="https://github.com/nilsleiffischer/gwpv",
12+
author="Nils L. Vu",
13+
author_email="nils.vu@aei.mpg.de",
14+
url="https://github.com/nilsvu/gwpv",
1515
long_description=long_description,
1616
long_description_content_type="text/markdown",
1717
packages=[
@@ -30,7 +30,6 @@
3030
],
3131
classifiers=[
3232
"Programming Language :: Python :: 3",
33-
"Programming Language :: Python :: 2.7",
3433
"License :: OSI Approved :: MIT License",
3534
"Operating System :: OS Independent",
3635
],

0 commit comments

Comments
 (0)